]> git.ipfire.org Git - thirdparty/git.git/commitdiff
cherry-pick/revert: make usage say '<commit-ish>...'
authorKevin Bracey <kevin@bracey.fi>
Mon, 22 Apr 2013 15:57:37 +0000 (18:57 +0300)
committerJunio C Hamano <gitster@pobox.com>
Wed, 24 Apr 2013 16:48:01 +0000 (09:48 -0700)
The usage string for cherry-pick and revert has never been updated to
reflect their ability to handle multiple commits. Other documentation is
already correct.

Signed-off-by: Kevin Bracey <kevin@bracey.fi>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/revert.c

index c5e36b94c080212ec9241146c20ef2e323663bea..0401fdb02cbbcb6ac885c82ee2850fb931fc54ba 100644 (file)
  */
 
 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
 };