Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-show-branch(1) |
| 2 | ================== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 0107892 | 2006-03-10 00:31:47 | [diff] [blame] | 6 | git-show-branch - Show branches and their commits |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 10 | [verse] |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 11 | 'git show-branch' [--all] [--remotes] [--topo-order] [--current] |
Junio C Hamano | 2bb1310 | 2006-03-06 07:10:21 | [diff] [blame] | 12 | [--more=<n> | --list | --independent | --merge-base] |
Junio C Hamano | 52401ef | 2006-12-19 00:54:38 | [diff] [blame] | 13 | [--no-name | --sha1-name] [--topics] [<rev> | <glob>]... |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 14 | 'git show-branch' (-g|--reflog)[=<n>[,<base>]] [--list] [<ref>] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 15 | |
| 16 | DESCRIPTION |
| 17 | ----------- |
| 18 | |
| 19 | Shows the commit ancestry graph starting from the commits named |
| 20 | with <rev>s or <globs>s (or all refs under $GIT_DIR/refs/heads |
| 21 | and/or $GIT_DIR/refs/tags) semi-visually. |
| 22 | |
| 23 | It cannot show more than 29 branches and commits at a time. |
| 24 | |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 25 | It uses `showbranch.default` multi-valued configuration items if |
| 26 | no <rev> nor <glob> is given on the command line. |
| 27 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 28 | |
| 29 | OPTIONS |
| 30 | ------- |
| 31 | <rev>:: |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 32 | Arbitrary extended SHA1 expression (see linkgit:git-rev-parse[1]) |
Junio C Hamano | 54bf1e2 | 2008-12-20 06:30:11 | [diff] [blame] | 33 | that typically names a branch head or a tag. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 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. |
| 40 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 41 | -r:: |
| 42 | --remotes:: |
Junio C Hamano | 30e1db1 | 2006-12-23 10:29:52 | [diff] [blame] | 43 | Show the remote-tracking branches. |
| 44 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 45 | -a:: |
| 46 | --all:: |
Junio C Hamano | 30e1db1 | 2006-12-23 10:29:52 | [diff] [blame] | 47 | Show both remote-tracking branches and local branches. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 48 | |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 49 | --current:: |
| 50 | With this option, the command includes the current |
| 51 | branch to the list of revs to be shown when it is not |
| 52 | given on the command line. |
| 53 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 54 | --topo-order:: |
| 55 | By default, the branches and their commits are shown in |
| 56 | reverse chronological order. This option makes them |
| 57 | appear in topological order (i.e., descendant commits |
| 58 | are shown before their parents). |
| 59 | |
Junio C Hamano | 872c568 | 2006-07-07 06:05:40 | [diff] [blame] | 60 | --sparse:: |
| 61 | By default, the output omits merges that are reachable |
| 62 | from only one tip being shown. This option makes them |
| 63 | visible. |
| 64 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 65 | --more=<n>:: |
| 66 | Usually the command stops output upon showing the commit |
| 67 | that is the common ancestor of all the branches. This |
| 68 | flag tells the command to go <n> more common commits |
| 69 | beyond that. When <n> is negative, display only the |
| 70 | <reference>s given, without showing the commit ancestry |
| 71 | tree. |
| 72 | |
| 73 | --list:: |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 74 | Synonym to `--more=-1` |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 75 | |
| 76 | --merge-base:: |
| 77 | Instead of showing the commit list, just act like the |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 78 | 'git-merge-base -a' command, except that it can accept |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 79 | more than two heads. |
| 80 | |
| 81 | --independent:: |
| 82 | Among the <reference>s given, display only the ones that |
| 83 | cannot be reached from any other <reference>. |
| 84 | |
| 85 | --no-name:: |
| 86 | Do not show naming strings for each commit. |
| 87 | |
| 88 | --sha1-name:: |
| 89 | Instead of naming the commits using the path to reach |
| 90 | them from heads (e.g. "master~2" to mean the grandparent |
| 91 | of "master"), name them with the unique prefix of their |
| 92 | object names. |
| 93 | |
Junio C Hamano | 52401ef | 2006-12-19 00:54:38 | [diff] [blame] | 94 | --topics:: |
| 95 | Shows only commits that are NOT on the first branch given. |
| 96 | This helps track topic branches by hiding any commit that |
| 97 | is already in the main line of development. When given |
| 98 | "git show-branch --topics master topic1 topic2", this |
| 99 | will show the revisions given by "git rev-list {caret}master |
| 100 | topic1 topic2" |
| 101 | |
Junio C Hamano | a3bb6eb | 2009-02-05 01:26:33 | [diff] [blame^] | 102 | -g:: |
Junio C Hamano | 16cf158 | 2007-02-05 07:21:48 | [diff] [blame] | 103 | --reflog[=<n>[,<base>]] [<ref>]:: |
Junio C Hamano | db450ba | 2007-01-21 08:57:14 | [diff] [blame] | 104 | Shows <n> most recent ref-log entries for the given |
| 105 | ref. If <base> is given, <n> entries going back from |
Junio C Hamano | fa0d4cf | 2007-01-25 02:23:58 | [diff] [blame] | 106 | that entry. <base> can be specified as count or date. |
Junio C Hamano | a3bb6eb | 2009-02-05 01:26:33 | [diff] [blame^] | 107 | When no explicit <ref> parameter is given, it defaults to the |
Junio C Hamano | 16cf158 | 2007-02-05 07:21:48 | [diff] [blame] | 108 | current branch (or `HEAD` if it is detached). |
Junio C Hamano | d793de5 | 2006-12-26 09:11:43 | [diff] [blame] | 109 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 110 | Note that --more, --list, --independent and --merge-base options |
| 111 | are mutually exclusive. |
| 112 | |
| 113 | |
| 114 | OUTPUT |
| 115 | ------ |
| 116 | Given N <references>, the first N lines are the one-line |
| 117 | description from their commit message. The branch head that is |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 118 | pointed at by $GIT_DIR/HEAD is prefixed with an asterisk `*` |
| 119 | character while other heads are prefixed with a `!` character. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 120 | |
| 121 | Following these N lines, one-line log for each commit is |
| 122 | displayed, indented N places. If a commit is on the I-th |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 123 | branch, the I-th indentation character shows a `+` sign; |
| 124 | otherwise it shows a space. Merge commits are denoted by |
| 125 | a `-` sign. Each commit shows a short name that |
Junio C Hamano | 235a91e | 2006-01-07 01:13:58 | [diff] [blame] | 126 | can be used as an extended SHA1 to name that commit. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 127 | |
| 128 | The following example shows three branches, "master", "fixes" |
| 129 | and "mhf": |
| 130 | |
| 131 | ------------------------------------------------ |
| 132 | $ git show-branch master fixes mhf |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 133 | * [master] Add 'git show-branch'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 134 | ! [fixes] Introduce "reset type" flag to "git reset" |
| 135 | ! [mhf] Allow "+remote:local" refspec to cause --force when fetching. |
| 136 | --- |
| 137 | + [mhf] Allow "+remote:local" refspec to cause --force when fetching. |
| 138 | + [mhf~1] Use git-octopus when pulling more than one heads. |
| 139 | + [fixes] Introduce "reset type" flag to "git reset" |
| 140 | + [mhf~2] "git fetch --force". |
| 141 | + [mhf~3] Use .git/remote/origin, not .git/branches/origin. |
| 142 | + [mhf~4] Make "git pull" and "git fetch" default to origin |
| 143 | + [mhf~5] Infamous 'octopus merge' |
| 144 | + [mhf~6] Retire git-parse-remote. |
| 145 | + [mhf~7] Multi-head fetch. |
| 146 | + [mhf~8] Start adding the $GIT_DIR/remotes/ support. |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 147 | *++ [master] Add 'git show-branch'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 148 | ------------------------------------------------ |
| 149 | |
| 150 | These three branches all forked from a common commit, [master], |
| 151 | whose commit message is "Add 'git show-branch'. "fixes" branch |
| 152 | adds one commit 'Introduce "reset type"'. "mhf" branch has many |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 153 | other commits. The current branch is "master". |
| 154 | |
| 155 | |
| 156 | EXAMPLE |
| 157 | ------- |
| 158 | |
| 159 | If you keep your primary branches immediately under |
| 160 | `$GIT_DIR/refs/heads`, and topic branches in subdirectories of |
| 161 | it, having the following in the configuration file may help: |
| 162 | |
| 163 | ------------ |
| 164 | [showbranch] |
| 165 | default = --topo-order |
| 166 | default = heads/* |
| 167 | |
| 168 | ------------ |
| 169 | |
Junio C Hamano | 2b13527 | 2006-03-18 07:45:42 | [diff] [blame] | 170 | With this, `git show-branch` without extra parameters would show |
Junio C Hamano | 38064d5 | 2006-01-15 10:13:49 | [diff] [blame] | 171 | only the primary branches. In addition, if you happen to be on |
| 172 | your topic branch, it is shown as well. |
| 173 | |
Junio C Hamano | db450ba | 2007-01-21 08:57:14 | [diff] [blame] | 174 | ------------ |
Junio C Hamano | f62a11d | 2008-12-21 12:16:36 | [diff] [blame] | 175 | $ git show-branch --reflog="10,1 hour ago" --list master |
Junio C Hamano | db450ba | 2007-01-21 08:57:14 | [diff] [blame] | 176 | ------------ |
| 177 | |
| 178 | shows 10 reflog entries going back from the tip as of 1 hour ago. |
| 179 | Without `--list`, the output also shows how these tips are |
| 180 | topologically related with each other. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 181 | |
| 182 | |
| 183 | Author |
| 184 | ------ |
Junio C Hamano | 0868a30 | 2008-07-22 09:20:44 | [diff] [blame] | 185 | Written by Junio C Hamano <gitster@pobox.com> |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 186 | |
| 187 | |
| 188 | Documentation |
| 189 | -------------- |
| 190 | Documentation by Junio C Hamano. |
| 191 | |
| 192 | |
| 193 | GIT |
| 194 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 195 | Part of the linkgit:git[1] suite |