summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 76a44c5)
raw | patch | inline | side by side (parent: 76a44c5)
author | Junio C Hamano <junkio@cox.net> | |
Sat, 20 Jan 2007 06:51:49 +0000 (22:51 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 20 Jan 2007 06:51:49 +0000 (22:51 -0800) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-show-branch.c | patch | blob | history |
diff --git a/builtin-show-branch.c b/builtin-show-branch.c
index 452c15fd1b6164f9d33aeb6652c394054b280d7d..651d27c2c0f7266b789e2939e5bffc854c70c8fe 100644 (file)
--- a/builtin-show-branch.c
+++ b/builtin-show-branch.c
#include "builtin.h"
static const char show_branch_usage[] =
-"git-show-branch [--sparse] [--current] [--all] [--remotes] [--topo-order] [--more=count | --list | --independent | --merge-base ] [--topics] [<refs>...] | --reflog[=n] <branch>";
+"git-show-branch [--sparse] [--current] [--all] [--remotes] [--topo-order] [--more=count | --list | --independent | --merge-base ] [--topics] [<refs>...] | --reflog[=n[,b]] <branch>";
+static const char show_branch_usage_reflog[] =
+"--reflog is incompatible with --all, --remotes, --independent or --merge-base";
static int default_num;
static int default_alloc;
*/
if (independent || merge_base)
usage(show_branch_usage);
- if (!!reflog && (0 < extra))
+ if (!!reflog && ((0 < extra) || all_heads || all_remotes))
/*
* Asking for --more in reflog mode does not
- * make sense.
+ * make sense. --list is Ok.
+ *
+ * Also --all and --remotes do not make sense either.
*/
- usage(show_branch_usage);
+ usage(show_branch_usage_reflog);
}
/* If nothing is specified, show all branches by default */
int base = 0;
if (ac != 1)
die("--reflog option needs one branch name");
+ if (MAX_REVS < reflog)
+ die("Only %d entries can be shown at one time.",
+ MAX_REVS);
if (!dwim_ref(*av, strlen(*av), sha1, &ref))
die("No such ref %s", *av);