From: Kevin Bracey Date: Mon, 22 Apr 2013 15:57:37 +0000 (+0300) Subject: cherry-pick/revert: make usage say '...' X-Git-Tag: v1.8.2.2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2130bf3ca9a0ce6ea8bebaa5e3abbecb48b02c09;p=thirdparty%2Fgit.git cherry-pick/revert: make usage say '...' 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 Signed-off-by: Junio C Hamano --- 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] "), + N_("git revert [options] ..."), N_("git revert "), NULL }; static const char * const cherry_pick_usage[] = { - N_("git cherry-pick [options] "), + N_("git cherry-pick [options] ..."), N_("git cherry-pick "), NULL };