diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-04-24 16:30:04 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-24 16:30:04 -0700 |
commit | 2d0b07178d548fd23954e3a6444f1d4d2d8b3a40 (patch) | |
tree | f3282ab31a25542da1bfc51f241f221084adca9f /builtin | |
parent | 30d925541e73185f24e77cf5837b798dd45ca438 (diff) | |
parent | 173f9a7145ab71d8ea916840836246afc6db66ef (diff) | |
download | git-2d0b07178d548fd23954e3a6444f1d4d2d8b3a40.tar.gz |
Sync with maint
* maint:
Update draft release notes to 1.8.2.2
completion: remove duplicate block for "git commit -c"
cherry-pick/revert: make usage say '<commit-ish>...'
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/revert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/revert.c b/builtin/revert.c index c5e36b94c0..0401fdb02c 100644 --- a/builtin/revert.c +++ b/builtin/revert.c @@ -19,13 +19,13 @@ */ static const char * const revert_usage[] = { - N_("git revert [options] <commit-ish>"), + N_("git revert [options] <commit-ish>..."), N_("git revert <subcommand>"), NULL }; static const char * const cherry_pick_usage[] = { - N_("git cherry-pick [options] <commit-ish>"), + N_("git cherry-pick [options] <commit-ish>..."), N_("git cherry-pick <subcommand>"), NULL }; |