Skip to content

Commit

Permalink
cherry-pick/revert: make usage say '<commit-ish>...'
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kevin Bracey authored and Junio C Hamano committed Apr 24, 2013
1 parent 3e7bb5d commit 2130bf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin/revert.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
Expand Down

0 comments on commit 2130bf3

Please sign in to comment.