Skip to content

Commit

Permalink
show-branch: fix description of --date-order
Browse files Browse the repository at this point in the history
The existing description reads as if it somehow applies a filter.
Change it to explain that it is merely about the ordering.

Message-proposed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Thomas Rast <trast@inf.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Thomas Rast authored and Junio C Hamano committed Jul 18, 2013
1 parent 42063f9 commit 465cf8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/show-branch.c
Original file line number Diff line number Diff line change
Expand Up @@ -671,9 +671,9 @@ int cmd_show_branch(int ac, const char **av, const char *prefix)
N_("show only commits not on the first branch")),
OPT_SET_INT(0, "sparse", &dense,
N_("show merges reachable from only one tip"), 0),
OPT_SET_INT(0, "date-order", &lifo,
N_("show commits where no parent comes before its "
"children"), 0),
OPT_SET_INT(0, "date-order", &sort_order,
N_("topologically sort, maintaining date order "
"where possible"), 0),
{ OPTION_CALLBACK, 'g', "reflog", &reflog_base, N_("<n>[,<base>]"),
N_("show <n> most recent ref-log entries starting at "
"base"),
Expand Down

0 comments on commit 465cf8c

Please sign in to comment.