summaryrefslogtreecommitdiff
path: root/builtin-remote.c
diff options
context:
space:
mode:
authorCheng Renquan <crquan@gmail.com>2008-11-18 11:04:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-11-18 23:38:34 (GMT)
commitdbbd56f1031992593f129168006b6c2f8bae13ec (patch)
treeda4d82f8144841b83155a681040b75355268bd77 /builtin-remote.c
parent47577456bfe61c32df73a7cf4a388f007af3b18f (diff)
downloadgit-dbbd56f1031992593f129168006b6c2f8bae13ec.zip
git-dbbd56f1031992593f129168006b6c2f8bae13ec.tar.gz
git-dbbd56f1031992593f129168006b6c2f8bae13ec.tar.bz2
git-remote: add verbose mode to git remote update
Pass the verbose mode parameter to the underlying fetch command. $ ./git remote -v update Updating origin From git://git.kernel.org/pub/scm/git/git = [up to date] html -> origin/html = [up to date] maint -> origin/maint = [up to date] man -> origin/man = [up to date] master -> origin/master = [up to date] next -> origin/next = [up to date] pu -> origin/pu = [up to date] todo -> origin/todo Signed-off-by: Cheng Renquan <crquan@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-remote.c')
-rw-r--r--builtin-remote.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/builtin-remote.c b/builtin-remote.c
index 14774e3..abc8dd8 100644
--- a/builtin-remote.c
+++ b/builtin-remote.c
@@ -14,7 +14,7 @@ static const char * const builtin_remote_usage[] = {
"git remote rm <name>",
"git remote show [-n] <name>",
"git remote prune [-n | --dry-run] <name>",
- "git remote update [group]",
+ "git remote [-v | --verbose] update [group]",
NULL
};
@@ -42,7 +42,11 @@ static int opt_parse_track(const struct option *opt, const char *arg, int not)
static int fetch_remote(const char *name)
{
- const char *argv[] = { "fetch", name, NULL };
+ const char *argv[] = { "fetch", name, NULL, NULL };
+ if (verbose) {
+ argv[1] = "-v";
+ argv[2] = name;
+ }
printf("Updating %s\n", name);
if (run_command_v_opt(argv, RUN_GIT_CMD))
return error("Could not fetch %s", name);