aboutsummaryrefslogtreecommitdiff
path: root/builtin/reflog.c
diff options
context:
space:
mode:
authorMichael Schubert <mschub@elegosoft.com>2011-08-01 13:20:42 +0200
committerJunio C Hamano <gitster@pobox.com>2011-08-01 10:52:34 -0700
commitbf01d4a334c621abdc76a5bdeac252296d9b23cb (patch)
treec7d703693692d239c4eb439e67b395d788534f8a /builtin/reflog.c
parentd5b66299040969706dd675c021f4336a26a6cc82 (diff)
downloadgit-bf01d4a334c621abdc76a5bdeac252296d9b23cb.tar.gz
git-bf01d4a334c621abdc76a5bdeac252296d9b23cb.tar.xz
reflog: actually default to subcommand 'show'
The reflog manpage says: git reflog [show] [log-options] [<ref>] the subcommand 'show' is the default "in the absence of any subcommands". Currently this is only true if the user provided either at least one option or no additional argument at all. For example: git reflog master won't work. Change this by actually calling cmd_log_reflog in absence of any subcommand. Signed-off-by: Michael Schubert <mschub@elegosoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/reflog.c')
-rw-r--r--builtin/reflog.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c
index ebf610e64..3a9c80f3d 100644
--- a/builtin/reflog.c
+++ b/builtin/reflog.c
@@ -777,6 +777,5 @@ int cmd_reflog(int argc, const char **argv, const char *prefix)
if (!strcmp(argv[1], "delete"))
return cmd_reflog_delete(argc - 1, argv + 1, prefix);
- /* Not a recognized reflog command..*/
- usage(reflog_usage);
+ return cmd_log_reflog(argc, argv, prefix);
}