]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-show-branch.txt
Extend read_ref_at() to be usable from places other than sha1_name.
[thirdparty/git.git] / Documentation / git-show-branch.txt
CommitLineData
f5e375c9
JH
1git-show-branch(1)
2==================
f5e375c9
JH
3
4NAME
5----
7bd7f280 6git-show-branch - Show branches and their commits
f5e375c9
JH
7
8SYNOPSIS
9--------
1aa68d67 10[verse]
f49006b0 11'git-show-branch' [--all] [--remotes] [--topo-order] [--current]
bd494fc7 12 [--more=<n> | --list | --independent | --merge-base]
38c594d3 13 [--no-name | --sha1-name] [--topics] [<rev> | <glob>]...
abc8ab19 14'git-show-branch' --reflog[=<n>] <ref>
f5e375c9
JH
15
16DESCRIPTION
17-----------
287f8600
JH
18
19Shows the commit ancestry graph starting from the commits named
20with <rev>s or <globs>s (or all refs under $GIT_DIR/refs/heads
21and/or $GIT_DIR/refs/tags) semi-visually.
22
23It cannot show more than 29 branches and commits at a time.
24
54f9734e
JH
25It uses `showbranch.default` multi-valued configuration items if
26no <rev> nor <glob> is given on the command line.
27
f5e375c9
JH
28
29OPTIONS
30-------
287f8600
JH
31<rev>::
32 Arbitrary extended SHA1 expression (see `git-rev-parse`)
33 that typically names a branch HEAD or a tag.
34
35<glob>::
36 A glob pattern that matches branch or tag names under
37 $GIT_DIR/refs. For example, if you have many topic
38 branches under $GIT_DIR/refs/heads/topic, giving
39 `topic/*` would show all of them.
f5e375c9 40
f49006b0
BG
41-r|--remotes::
42 Show the remote-tracking branches.
43
44-a|--all::
45 Show both remote-tracking branches and local branches.
f5e375c9 46
1aa68d67
JH
47--current::
48 With this option, the command includes the current
49 branch to the list of revs to be shown when it is not
50 given on the command line.
51
d4ce5f7e
NW
52--topo-order::
53 By default, the branches and their commits are shown in
54 reverse chronological order. This option makes them
55 appear in topological order (i.e., descendant commits
56 are shown before their parents).
57
8048e24b
JH
58--sparse::
59 By default, the output omits merges that are reachable
60 from only one tip being shown. This option makes them
61 visible.
62
f5e375c9
JH
63--more=<n>::
64 Usually the command stops output upon showing the commit
65 that is the common ancestor of all the branches. This
f85a4191 66 flag tells the command to go <n> more common commits
1f8af483
JH
67 beyond that. When <n> is negative, display only the
68 <reference>s given, without showing the commit ancestry
69 tree.
70
71--list::
54f9734e 72 Synonym to `--more=-1`
f5e375c9
JH
73
74--merge-base::
75 Instead of showing the commit list, just act like the
2f0f8b71
JH
76 'git-merge-base -a' command, except that it can accept
77 more than two heads.
f5e375c9 78
1f8af483
JH
79--independent::
80 Among the <reference>s given, display only the ones that
81 cannot be reached from any other <reference>.
82
013f276e
JH
83--no-name::
84 Do not show naming strings for each commit.
85
86--sha1-name::
87 Instead of naming the commits using the path to reach
88 them from heads (e.g. "master~2" to mean the grandparent
89 of "master"), name them with the unique prefix of their
90 object names.
91
38c594d3
BG
92--topics::
93 Shows only commits that are NOT on the first branch given.
94 This helps track topic branches by hiding any commit that
95 is already in the main line of development. When given
96 "git show-branch --topics master topic1 topic2", this
97 will show the revisions given by "git rev-list {caret}master
98 topic1 topic2"
99
abc8ab19
JH
100--reflog[=<n>] <ref>::
101 Shows <n> most recent ref-log entries for the given ref.
102
103
1f8af483
JH
104Note that --more, --list, --independent and --merge-base options
105are mutually exclusive.
106
f5e375c9
JH
107
108OUTPUT
109------
110Given N <references>, the first N lines are the one-line
111description from their commit message. The branch head that is
ebedc319
JH
112pointed at by $GIT_DIR/HEAD is prefixed with an asterisk `*`
113character while other heads are prefixed with a `!` character.
f5e375c9
JH
114
115Following these N lines, one-line log for each commit is
116displayed, indented N places. If a commit is on the I-th
ebedc319
JH
117branch, the I-th indentation character shows a `+` sign;
118otherwise it shows a space. Merge commits are denoted by
119a `-` sign. Each commit shows a short name that
89438677 120can be used as an extended SHA1 to name that commit.
f5e375c9
JH
121
122The following example shows three branches, "master", "fixes"
123and "mhf":
124
125------------------------------------------------
126$ git show-branch master fixes mhf
ebedc319 127* [master] Add 'git show-branch'.
f5e375c9
JH
128 ! [fixes] Introduce "reset type" flag to "git reset"
129 ! [mhf] Allow "+remote:local" refspec to cause --force when fetching.
130---
131 + [mhf] Allow "+remote:local" refspec to cause --force when fetching.
132 + [mhf~1] Use git-octopus when pulling more than one heads.
133 + [fixes] Introduce "reset type" flag to "git reset"
134 + [mhf~2] "git fetch --force".
135 + [mhf~3] Use .git/remote/origin, not .git/branches/origin.
136 + [mhf~4] Make "git pull" and "git fetch" default to origin
137 + [mhf~5] Infamous 'octopus merge'
138 + [mhf~6] Retire git-parse-remote.
139 + [mhf~7] Multi-head fetch.
140 + [mhf~8] Start adding the $GIT_DIR/remotes/ support.
ebedc319 141*++ [master] Add 'git show-branch'.
f5e375c9
JH
142------------------------------------------------
143
144These three branches all forked from a common commit, [master],
145whose commit message is "Add 'git show-branch'. "fixes" branch
146adds one commit 'Introduce "reset type"'. "mhf" branch has many
ebedc319 147other commits. The current branch is "master".
f5e375c9 148
f5e375c9 149
54f9734e
JH
150EXAMPLE
151-------
152
153If you keep your primary branches immediately under
154`$GIT_DIR/refs/heads`, and topic branches in subdirectories of
155it, having the following in the configuration file may help:
156
157------------
158[showbranch]
159 default = --topo-order
160 default = heads/*
161
162------------
163
beb8e134 164With this, `git show-branch` without extra parameters would show
1aa68d67
JH
165only the primary branches. In addition, if you happen to be on
166your topic branch, it is shown as well.
54f9734e
JH
167
168
169
f5e375c9
JH
170Author
171------
172Written by Junio C Hamano <junkio@cox.net>
173
174
175Documentation
176--------------
177Documentation by Junio C Hamano.
178
179
180GIT
181---
a7154e91 182Part of the gitlink:git[7] suite