diff options
author | Tim Henigan <tim.henigan@gmail.com> | 2009-11-15 14:46:25 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-15 12:24:46 -0800 |
commit | 997c2a45ecf55a8f8bc6fe78a0abc319e23a62d1 (patch) | |
tree | 3318c5517bf694b9e888319dbe592a36b78eb3c3 | |
parent | GIT 1.6.5 (diff) | |
download | tgif-997c2a45ecf55a8f8bc6fe78a0abc319e23a62d1.tar.xz |
Update 'git remote update' usage string to match man page.
Commit b344e161 taught 'git remote update' to understand
[group | remote] as its argument. The man page was updated
to document this change, but the usage string was not.
Signed-off-by: Tim Henigan <tim.henigan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-remote.c b/builtin-remote.c index 0777dd719b..c4edb86530 100644 --- a/builtin-remote.c +++ b/builtin-remote.c @@ -15,7 +15,7 @@ static const char * const builtin_remote_usage[] = { "git remote set-head <name> [-a | -d | <branch>]", "git remote show [-n] <name>", "git remote prune [-n | --dry-run] <name>", - "git remote [-v | --verbose] update [-p | --prune] [group]", + "git remote [-v | --verbose] update [-p | --prune] [group | remote]", NULL }; |