File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ git-show-branch - Show branches and their commits.
77
88SYNOPSIS
99--------
10- 'git-show-branch [--all] [--heads] [--tags] [--more=<n> | --list | --independent | --merge-base] [--no-name | --sha1-name] [<rev> | <glob>]...'
10+ 'git-show-branch [--all] [--heads] [--tags] [--topo-order] [-- more=<n> | --list | --independent | --merge-base] [--no-name | --sha1-name] [<rev> | <glob>]...'
1111
1212DESCRIPTION
1313-----------
@@ -35,6 +35,12 @@ OPTIONS
3535 Show all refs under $GIT_DIR/refs, $GIT_DIR/refs/heads,
3636 and $GIT_DIR/refs/tags, respectively.
3737
38+ --topo-order::
39+ By default, the branches and their commits are shown in
40+ reverse chronological order. This option makes them
41+ appear in topological order (i.e., descendant commits
42+ are shown before their parents).
43+
3844--more=<n>::
3945 Usually the command stops output upon showing the commit
4046 that is the common ancestor of all the branches. This
Original file line number Diff line number Diff line change 55#include "refs.h"
66
77static const char show_branch_usage [] =
8- "git-show-branch [--all] [--heads] [--tags] [--more=count | --list | --independent | --merge-base ] [<refs>...]" ;
8+ "git-show-branch [--all] [--heads] [--tags] [--topo-order] [-- more=count | --list | --independent | --merge-base ] [<refs>...]" ;
99
1010#define UNINTERESTING 01
1111
You can’t perform that action at this time.
0 commit comments