summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a9eefb3)
raw | patch | inline | side by side (parent: a9eefb3)
author | Junio C Hamano <junkio@cox.net> | |
Fri, 26 Jan 2007 06:14:45 +0000 (22:14 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 26 Jan 2007 06:31:10 +0000 (22:31 -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 536245e7d3815c087906b56d2af503fa8e4451a9..fa62e487b186adc72ac41aacca31b4f4c8baefa9 100644 (file)
--- a/builtin-show-branch.c
+++ b/builtin-show-branch.c
}
ac--; av++;
- if (!!extra || !!reflog) {
+ if (extra || reflog) {
/* "listing" mode is incompatible with
* independent nor merge-base modes.
*/
if (independent || merge_base)
usage(show_branch_usage);
- if (!!reflog && ((0 < extra) || all_heads || all_remotes))
+ if (reflog && ((0 < extra) || all_heads || all_remotes))
/*
* Asking for --more in reflog mode does not
* make sense. --list is Ok.
if (ac + all_heads + all_remotes == 0)
all_heads = 1;
- if (all_heads + all_remotes)
- snarf_refs(all_heads, all_remotes);
if (reflog) {
unsigned char sha1[20];
char nth_desc[256];
char *ref;
int base = 0;
+
+ if (ac == 0) {
+ static const char *fake_av[2];
+ fake_av[0] = "HEAD";
+ fake_av[1] = NULL;
+ av = fake_av;
+ ac = 1;
+ }
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);
append_ref(nth_desc, sha1, 1);
}
}
+ else if (all_heads + all_remotes)
+ snarf_refs(all_heads, all_remotes);
else {
while (0 < ac) {
append_one_rev(*av);