summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cc167cc)
raw | patch | inline | side by side (parent: cc167cc)
author | Junio C Hamano <junkio@cox.net> | |
Fri, 6 May 2005 08:37:21 +0000 (01:37 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 6 May 2005 08:37:21 +0000 (01:37 -0700) |
This moves the private "say()" function to pull.c, renames it to
"pull_say()", and introduces a global variable "get_verbosely" that
makes the pull backends report what they fetch. The -v option is
added to git-rpull and git-http-pull to match git-local-pull.
The documentation is updated to describe these pull commands.
Signed-off-by: Junio C Hamano <junkio@cox.net>
"pull_say()", and introduces a global variable "get_verbosely" that
makes the pull backends report what they fetch. The -v option is
added to git-rpull and git-http-pull to match git-local-pull.
The documentation is updated to describe these pull commands.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/core-git.txt | patch | blob | history | |
http-pull.c | patch | blob | history | |
local-pull.c | patch | blob | history | |
pull.c | patch | blob | history | |
pull.h | patch | blob | history | |
rpull.c | patch | blob | history |
index 36f5a9d34ea09344824ad9ff57715e99c3a6147a..e5121ca86a2e35bfd12d2a96a76823f74c95f734 100644 (file)
################################################################
git-http-pull
+ git-http-pull [-c] [-t] [-a] [-v] commit-id url
+
Downloads a remote GIT repository via HTTP protocol.
+-c
+ Get the commit objects.
+-t
+ Get trees associated with the commit objects.
+-a
+ Get all the objects.
+-v
+ Report what is downloaded.
+
################################################################
git-local-pull
+ git-local-pull [-c] [-t] [-a] [-l] [-s] [-n] [-v] commit-id path
+
Downloads another GIT repository on a local system.
+-c
+ Get the commit objects.
+-t
+ Get trees associated with the commit objects.
+-a
+ Get all the objects.
+-v
+ Report what is downloaded.
################################################################
git-ls-tree
################################################################
git-rpull
+ git-rpull [-c] [-t] [-a] [-v] commit-id url
+
Pulls from a remote repository over ssh connection, invoking git-rpush on
the other end.
+-c
+ Get the commit objects.
+-t
+ Get trees associated with the commit objects.
+-a
+ Get all the objects.
+-v
+ Report what is downloaded.
+
################################################################
git-rpush
diff --git a/http-pull.c b/http-pull.c
index f693aba61b4dcb4b738faf1335ec74aa1545e45d..024457a9895ab10c4ef18aa6e232d12fdaab4da9 100644 (file)
--- a/http-pull.c
+++ b/http-pull.c
curl_easy_setopt(curl, CURLOPT_URL, url);
- /*printf("Getting %s\n", hex);*/
-
if (curl_easy_perform(curl))
return error("Couldn't get %s for %s\n", url, hex);
return error("File %s has bad hash\n", hex);
}
+ pull_say("got %s\n", hex);
return 0;
}
get_all = 1;
get_tree = 1;
get_history = 1;
+ } else if (argv[arg][1] == 'v') {
+ get_verbosely = 1;
}
arg++;
}
if (argc < arg + 2) {
- usage("http-pull [-c] [-t] [-a] commit-id url");
+ usage("git-http-pull [-c] [-t] [-a] [-v] commit-id url");
return 1;
}
commit_id = argv[arg];
diff --git a/local-pull.c b/local-pull.c
index 4f52bca48c390e8113b3695a53ce62e0c23278a8..1eec8927dbfa3af934651b25ded738d192706286 100644 (file)
--- a/local-pull.c
+++ b/local-pull.c
static int use_link = 0;
static int use_symlink = 0;
static int use_filecopy = 1;
-static int verbose = 0;
static char *path;
-static void say(const char *fmt, const char *hex) {
- if (verbose)
- fprintf(stderr, fmt, hex);
-}
-
int fetch(unsigned char *sha1)
{
static int object_name_start = -1;
strcpy(filename + object_name_start + 3, hex + 2);
if (use_link) {
if (!link(filename, dest_filename)) {
- say("link %s\n", hex);
+ pull_say("link %s\n", hex);
return 0;
}
/* If we got ENOENT there is no point continuing. */
}
}
if (use_symlink && !symlink(filename, dest_filename)) {
- say("symlink %s\n", hex);
+ pull_say("symlink %s\n", hex);
return 0;
}
if (use_filecopy) {
fprintf(stderr, "cannot write %s (%ld bytes)\n",
dest_filename, st.st_size);
else
- say("copy %s\n", hex);
+ pull_say("copy %s\n", hex);
return status;
}
fprintf(stderr, "failed to copy %s with given copy methods.\n", hex);
else if (argv[arg][1] == 'n')
use_filecopy = 0;
else if (argv[arg][1] == 'v')
- verbose = 1;
+ get_verbosely = 1;
else
usage(local_pull_usage);
arg++;
index 55f17c0a036e74773fb73ad669b3378af903c30a..0bed44f4cbf6716cfc3152f35626123992766408 100644 (file)
--- a/pull.c
+++ b/pull.c
int get_tree = 0;
int get_history = 0;
int get_all = 0;
+int get_verbosely = 0;
static unsigned char current_commit_sha1[20];
static const char commitS[] = "commit";
static const char treeS[] = "tree";
static const char blobS[] = "blob";
+void pull_say(const char *fmt, const char *hex) {
+ if (get_verbosely)
+ fprintf(stderr, fmt, hex);
+}
+
static void report_missing(const char *what, const unsigned char *missing)
{
char missing_hex[41];
index 314bc7e95ab1a73634f6a96a8a3782fda91ea261..d2dca02de7c23426e84e9f63762df9428933e8d8 100644 (file)
--- a/pull.h
+++ b/pull.h
/** Set to fetch the trees in the commit history. **/
extern int get_all;
+/* Set to be verbose */
+extern int get_verbosely;
+
+/* Report what we got under get_verbosely */
+extern void pull_say(const char *, const char *);
+
extern int pull(char *target);
#endif /* PULL_H */
index 75f8f94fcfbb122b76435ddb1c68f805dee55b7e..b48e63157c66c160b9751603a92831f77106044c 100644 (file)
--- a/rpull.c
+++ b/rpull.c
int fetch(unsigned char *sha1)
{
+ int ret;
write(fd_out, sha1, 20);
- return write_sha1_from_fd(sha1, fd_in);
+ ret = write_sha1_from_fd(sha1, fd_in);
+ if (!ret)
+ pull_say("got %s\n", sha1_to_hex(sha1));
+ return ret;
}
int main(int argc, char **argv)
get_all = 1;
get_tree = 1;
get_history = 1;
+ } else if (argv[arg][1] == 'v') {
+ get_verbosely = 1;
}
arg++;
}
if (argc < arg + 2) {
- usage("rpull [-c] [-t] [-a] commit-id url");
+ usage("git-rpull [-c] [-t] [-a] [-v] commit-id url");
return 1;
}
commit_id = argv[arg];