aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-11-27 19:24:40 -0800
committerJunio C Hamano <gitster@pobox.com>2008-11-27 19:24:40 -0800
commitcab7d7d827365959a2713c6d9159f10401acbb51 (patch)
treededf894912a7ee3af40df3fc8cd48814d5e37ef3
parent2d2b3fd8485eee6dd238b930f2592535730089a4 (diff)
parentdbbd56f1031992593f129168006b6c2f8bae13ec (diff)
downloadgit-cab7d7d827365959a2713c6d9159f10401acbb51.tar.gz
git-cab7d7d827365959a2713c6d9159f10401acbb51.tar.xz
Merge branch 'cr/remote-update-v'
* cr/remote-update-v: git-remote: add verbose mode to git remote update
-rw-r--r--builtin-remote.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/builtin-remote.c b/builtin-remote.c
index 14774e36c..abc8dd838 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);