aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Heidelberg <markus.heidelberg@web.de>2009-01-01 22:56:29 +0100
committerJunio C Hamano <gitster@pobox.com>2009-01-05 11:43:28 -0800
commit3bc52d7a95676bcdeeb61c372b44358daf817baa (patch)
tree856e8ab3b96d5517353dcffbc912f8ae38793d39
parentf29680221124d05581dd2db52a4e7f0fa15fa929 (diff)
downloadgit-3bc52d7a95676bcdeeb61c372b44358daf817baa.tar.gz
git-3bc52d7a95676bcdeeb61c372b44358daf817baa.tar.xz
Documentation: clarify which parameters are optional to git-cherry
An earlier parameter is only optional when all of the later parameters are omitted. Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/git-cherry.txt2
-rw-r--r--builtin-log.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-cherry.txt b/Documentation/git-cherry.txt
index 556ea23cd..7deefdae8 100644
--- a/Documentation/git-cherry.txt
+++ b/Documentation/git-cherry.txt
@@ -7,7 +7,7 @@ git-cherry - Find commits not merged upstream
SYNOPSIS
--------
-'git cherry' [-v] [<upstream>] [<head>] [<limit>]
+'git cherry' [-v] [<upstream> [<head> [<limit>]]]
DESCRIPTION
-----------
diff --git a/builtin-log.c b/builtin-log.c
index 243f8573e..7e9616e5e 100644
--- a/builtin-log.c
+++ b/builtin-log.c
@@ -1071,7 +1071,7 @@ static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
}
static const char cherry_usage[] =
-"git cherry [-v] [<upstream>] [<head>] [<limit>]";
+"git cherry [-v] [<upstream> [<head> [<limit>]]]";
int cmd_cherry(int argc, const char **argv, const char *prefix)
{
struct rev_info revs;