Skip to content

Commit

Permalink
reflog: actually default to subcommand 'show'
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Michael Schubert authored and Junio C Hamano committed Aug 1, 2011
1 parent d5b6629 commit bf01d4a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions builtin/reflog.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit bf01d4a

Please sign in to comment.