summaryrefslogtreecommitdiff
path: root/builtin/merge.c
diff options
context:
space:
mode:
authorLibravatar Jared Hance <jaredhance@gmail.com>2011-02-10 18:52:41 -0500
committerLibravatar Junio C Hamano <gitster@pobox.com>2011-03-24 00:09:51 -0700
commitc395c25b8642893dd1bb4be1fd124dd12f9b848c (patch)
tree5dcc2fc657a4d46e694aef9d75807906a5e804cd /builtin/merge.c
parentpull: Document the "--[no-]recurse-submodules" options (diff)
downloadtgif-c395c25b8642893dd1bb4be1fd124dd12f9b848c.tar.xz
merge: match the help text with the documentation
We used to be very casual in terminology and used <branch>, <ref> and <rev> more or less interchangeably with <commit>. Match the help text given by "git merge -h" with that of the documentation. Signed-off-by: Jared Hance <jaredhance@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/merge.c')
-rw-r--r--builtin/merge.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/builtin/merge.c b/builtin/merge.c
index 42fff387e6..a2105ef90c 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] <remote>...",
- "git merge [options] <msg> HEAD <remote>",
+ "git merge [options] <commit>...",
+ "git merge [options] <msg> HEAD <commit>",
+ "git merge --abort",
NULL
};