Skip to content

Commit

Permalink
git-remote: add verbose mode to git remote update
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Cheng Renquan authored and Junio C Hamano committed Nov 18, 2008
1 parent 4757745 commit dbbd56f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions builtin-remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit dbbd56f

Please sign in to comment.