From: Jared Hance Date: Thu, 10 Feb 2011 23:52:41 +0000 (-0500) Subject: merge: match the help text with the documentation X-Git-Tag: v1.7.5-rc1~17^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c395c25b8642893dd1bb4be1fd124dd12f9b848c;p=git.git merge: match the help text with the documentation We used to be very casual in terminology and used , and more or less interchangeably with . Match the help text given by "git merge -h" with that of the documentation. Signed-off-by: Jared Hance Signed-off-by: Junio C Hamano --- diff --git a/builtin/merge.c b/builtin/merge.c index 42fff387e..a2105ef90 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -37,8 +37,9 @@ struct strategy { }; static const char * const builtin_merge_usage[] = { - "git merge [options] ...", - "git merge [options] HEAD ", + "git merge [options] ...", + "git merge [options] HEAD ", + "git merge --abort", NULL };