X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-remote.c;h=abc8dd8389be4a51b467b4f6d4f74e2037d65423;hb=0aac1614e976164259edf5f950da4cbebe069466;hp=14774e36c40cb079b52259b300cb58f6b94d0588;hpb=455d0f5c23a600ff8c94642ca5123f1bd2f1ec0d;p=git.git 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 ", "git remote show [-n] ", "git remote prune [-n | --dry-run] ", - "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);