summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7811d96)
raw | patch | inline | side by side (parent: 7811d96)
author | Jared Hance <jaredhance@gmail.com> | |
Thu, 10 Feb 2011 23:52:41 +0000 (18:52 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 24 Mar 2011 07:09:51 +0000 (00:09 -0700) |
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>
<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>
builtin/merge.c | patch | blob | history |
diff --git a/builtin/merge.c b/builtin/merge.c
index 42fff387e69d9b5412e8e776aed3272b78ebe758..a2105ef90cca1991a24b802b688c12b0bd6fb41d 100644 (file)
--- a/builtin/merge.c
+++ b/builtin/merge.c
};
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
};