blob: b7cb625b894d4ba83cb13914e1fd010e1bfaf0d3 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-branch(1)
2=============
3
4NAME
5----
Junio C Hamano7c73c662007-01-19 00:37:506git-branch - List, create, or delete branches
Junio C Hamano1a4e8412005-12-27 08:17:237
8SYNOPSIS
9--------
Junio C Hamano2b135272006-03-18 07:45:4210[verse]
Junio C Hamano4aa0bcc2010-03-03 05:13:1211'git branch' [--color[=<when>] | --no-color] [-r | -a]
Junio C Hamano8fb66e52011-10-05 20:59:5112[--list] [-v [--abbrev=<length> | --no-abbrev]]
Junio C Hamano22700fb2012-05-03 23:07:2513[--column[=<options>] | --no-column]
Junio C Hamano8fb66e52011-10-05 20:59:5114[(--merged | --no-merged | --contains) [<commit>]] [<pattern>...]
Junio C Hamano57827fb2010-01-23 03:02:5015'git branch' [--set-upstream | --track | --no-track] [-l] [-f] <branchname> [<start-point>]
Junio C Hamanoeccdd4a2012-09-10 23:28:1716'git branch' (--set-upstream-to=<upstream> | -u <upstream>) [<branchname>]
17'git branch' --unset-upstream [<branchname>]
Junio C Hamanofce7c7e2008-07-02 03:06:3818'git branch' (-m | -M) [<oldbranch>] <newbranch>
19'git branch' (-d | -D) [-r] <branchname>...
Junio C Hamano515ab1d2011-12-09 23:41:2020'git branch' --edit-description [<branchname>]
Junio C Hamano1a4e8412005-12-27 08:17:2321
22DESCRIPTION
23-----------
Junio C Hamano38ddcce2008-07-15 15:49:0324
Junio C Hamanob5e079f2013-02-08 00:02:5225If `--list` is given, or if there are no non-option arguments, existing
26branches are listed; the current branch will be highlighted with an
27asterisk. Option `-r` causes the remote-tracking branches to be listed,
28and option `-a` shows both local and remote branches. If a `<pattern>`
29is given, it is used as a shell wildcard to restrict the output to
30matching branches. If multiple patterns are given, a branch is shown if
31it matches any of the patterns. Note that when providing a
32`<pattern>`, you must use `--list`; otherwise the command is interpreted
33as branch creation.
Junio C Hamano38ddcce2008-07-15 15:49:0334
Junio C Hamanofd83b8e2009-03-22 08:21:4135With `--contains`, shows only the branches that contain the named commit
36(in other words, the branches whose tip commits are descendants of the
Junio C Hamano38ddcce2008-07-15 15:49:0337named commit). With `--merged`, only branches merged into the named
38commit (i.e. the branches whose tip commits are reachable from the named
39commit) will be listed. With `--no-merged` only branches not merged into
Junio C Hamanofd83b8e2009-03-22 08:21:4140the named commit will be listed. If the <commit> argument is missing it
41defaults to 'HEAD' (i.e. the tip of the current branch).
Junio C Hamano1a4e8412005-12-27 08:17:2342
Junio C Hamanoc0e55e72009-10-10 00:56:2943The command's second form creates a new branch head named <branchname>
44which points to the current 'HEAD', or <start-point> if given.
Junio C Hamanoc8d88c22006-04-29 07:02:0145
Junio C Hamano1b50ce92007-10-03 12:05:5346Note that this will create the new branch, but it will not switch the
47working tree to it; use "git checkout <newbranch>" to switch to the
48new branch.
49
Junio C Hamano076ffcc2013-02-06 05:13:2150When a local branch is started off a remote-tracking branch, Git sets up the
Junio C Hamano1aa40d22010-01-21 17:46:4351branch so that 'git pull' will appropriately merge from
Junio C Hamano97bcb482010-11-25 03:16:0752the remote-tracking branch. This behavior may be changed via the global
Junio C Hamano24bc09a2008-02-28 00:27:4453`branch.autosetupmerge` configuration flag. That setting can be
Junio C Hamano97bcb482010-11-25 03:16:0754overridden by using the `--track` and `--no-track` options, and
Junio C Hamanoeccdd4a2012-09-10 23:28:1755changed later using `git branch --set-upstream-to`.
Junio C Hamano103ad7f2007-03-14 11:19:2656
Junio C Hamanocae88e22012-03-09 00:13:2057With a `-m` or `-M` option, <oldbranch> will be renamed to <newbranch>.
Junio C Hamanoe7935c42006-12-13 21:32:1758If <oldbranch> had a corresponding reflog, it is renamed to match
59<newbranch>, and a reflog entry is created to remember the branch
60renaming. If <newbranch> exists, -M must be used to force the rename
61to happen.
62
Junio C Hamanoc8d88c22006-04-29 07:02:0163With a `-d` or `-D` option, `<branchname>` will be deleted. You may
Junio C Hamano341071d2006-06-04 07:24:4864specify more than one branch for deletion. If the branch currently
Junio C Hamano258e4412007-11-29 02:28:3265has a reflog then the reflog will also be deleted.
66
Junio C Hamanocae88e22012-03-09 00:13:2067Use `-r` together with `-d` to delete remote-tracking branches. Note, that it
Junio C Hamano258e4412007-11-29 02:28:3268only makes sense to delete remote-tracking branches if they no longer exist
Junio C Hamano1aa40d22010-01-21 17:46:4369in the remote repository or if 'git fetch' was configured not to fetch
Junio C Hamanofd83b8e2009-03-22 08:21:4170them again. See also the 'prune' subcommand of linkgit:git-remote[1] for a
71way to clean up all obsolete remote-tracking branches.
Junio C Hamano2b135272006-03-18 07:45:4272
73
Junio C Hamano1a4e8412005-12-27 08:17:2374OPTIONS
75-------
76-d::
Junio C Hamano8fb66e52011-10-05 20:59:5177--delete::
Junio C Hamanod9657062010-04-18 00:01:0378Delete a branch. The branch must be fully merged in its
79upstream branch, or in `HEAD` if no upstream was set with
80`--track` or `--set-upstream`.
Junio C Hamano1a4e8412005-12-27 08:17:2381
82-D::
Junio C Hamano258e4412007-11-29 02:28:3283Delete a branch irrespective of its merged status.
Junio C Hamano1a4e8412005-12-27 08:17:2384
Junio C Hamano341071d2006-06-04 07:24:4885-l::
Junio C Hamano8fb66e52011-10-05 20:59:5186--create-reflog::
Junio C Hamano1d90cb02007-07-03 07:05:3187Create the branch's reflog. This activates recording of
88all changes made to the branch ref, enabling use of date
89based sha1 expressions such as "<branchname>@\{yesterday}".
Junio C Hamanoe7495622010-04-09 07:18:3590Note that in non-bare repositories, reflogs are usually
91enabled by default by the `core.logallrefupdates` config option.
Junio C Hamano341071d2006-06-04 07:24:4892
Junio C Hamano560a1f62006-01-30 04:19:5793-f::
Junio C Hamano68cfa3a2009-08-30 00:22:5594--force::
Junio C Hamanoea82cff2009-03-18 01:54:4895Reset <branchname> to <startpoint> if <branchname> exists
Junio C Hamano1aa40d22010-01-21 17:46:4396already. Without `-f` 'git branch' refuses to change an existing branch.
Junio C Hamanoc8d88c22006-04-29 07:02:0197
Junio C Hamanoe7935c42006-12-13 21:32:1798-m::
Junio C Hamano8fb66e52011-10-05 20:59:5199--move::
Junio C Hamanoe7935c42006-12-13 21:32:17100Move/rename a branch and the corresponding reflog.
101
102-M::
Junio C Hamanofd83b8e2009-03-22 08:21:41103Move/rename a branch even if the new branch name already exists.
Junio C Hamanoe7935c42006-12-13 21:32:17104
Junio C Hamano4aa0bcc2010-03-03 05:13:12105--color[=<when>]::
Junio C Hamano97bcb482010-11-25 03:16:07106Color branches to highlight current, local, and
107remote-tracking branches.
Junio C Hamano4aa0bcc2010-03-03 05:13:12108The value must be always (the default), never, or auto.
Junio C Hamanoeb692952007-01-03 22:02:12109
110--no-color::
111Turn off branch colors, even when the configuration file gives the
112default to color output.
Junio C Hamano4aa0bcc2010-03-03 05:13:12113Same as `--color=never`.
Junio C Hamanoeb692952007-01-03 22:02:12114
Junio C Hamano22700fb2012-05-03 23:07:25115--column[=<options>]::
116--no-column::
117Display branch listing in columns. See configuration variable
118column.branch for option syntax.`--column` and `--no-column`
119without options are equivalent to 'always' and 'never' respectively.
120+
121This option is only applicable in non-verbose mode.
122
Junio C Hamanoc8d88c22006-04-29 07:02:01123-r::
Junio C Hamano8fb66e52011-10-05 20:59:51124--remotes::
Junio C Hamano63ef0ac2006-12-22 07:28:18125List or delete (if used with -d) the remote-tracking branches.
Junio C Hamanofe9acab2006-11-24 12:10:55126
127-a::
Junio C Hamano8fb66e52011-10-05 20:59:51128--all::
Junio C Hamanofe9acab2006-11-24 12:10:55129List both remote-tracking branches and local branches.
Junio C Hamano560a1f62006-01-30 04:19:57130
Junio C Hamano8fb66e52011-10-05 20:59:51131--list::
132Activate the list mode. `git branch <pattern>` would try to create a branch,
133use `git branch --list <pattern>` to list matching branches.
134
Junio C Hamanoeb415992008-06-08 22:49:47135-v::
Junio C Hamano4f07aec2012-09-25 19:08:44136-vv::
Junio C Hamanoeb415992008-06-08 22:49:47137--verbose::
Junio C Hamano8fb66e52011-10-05 20:59:51138When in list mode,
139show sha1 and commit subject line for each head, along with
Junio C Hamano98e32c32009-04-13 02:39:53140relationship to upstream branch (if any). If given twice, print
Junio C Hamano4f07aec2012-09-25 19:08:44141the name of the upstream branch, as well (see also `git remote
142show <remote>`).
Junio C Hamano53edd072006-11-25 10:05:21143
Junio C Hamano51f87de2012-04-16 21:18:54144-q::
145--quiet::
146Be more quiet when creating or deleting a branch, suppressing
147non-error messages.
148
Junio C Hamano53edd072006-11-25 10:05:21149--abbrev=<length>::
Junio C Hamanofd83b8e2009-03-22 08:21:41150Alter the sha1's minimum display length in the output listing.
Junio C Hamano6e41cb32011-08-29 07:12:49151The default value is 7 and can be overridden by the `core.abbrev`
152config option.
Junio C Hamano53edd072006-11-25 10:05:21153
Junio C Hamanoa3fccdf2007-03-03 05:18:26154--no-abbrev::
Junio C Hamanofd83b8e2009-03-22 08:21:41155Display the full sha1s in the output listing rather than abbreviating them.
Junio C Hamanoa3fccdf2007-03-03 05:18:26156
Junio C Hamano89bdb3b2009-05-10 06:48:14157-t::
Junio C Hamano1b50ce92007-10-03 12:05:53158--track::
Junio C Hamano3bd66e92009-04-18 06:17:56159When creating a new branch, set up configuration to mark the
160start-point branch as "upstream" from the new branch. This
161configuration will tell git to show the relationship between the
162two branches in `git status` and `git branch -v`. Furthermore,
163it directs `git pull` without arguments to pull from the
164upstream when the new branch is checked out.
165+
Junio C Hamano97bcb482010-11-25 03:16:07166This behavior is the default when the start point is a remote-tracking branch.
Junio C Hamano3bd66e92009-04-18 06:17:56167Set the branch.autosetupmerge configuration variable to `false` if you
168want `git checkout` and `git branch` to always behave as if '--no-track'
169were given. Set it to `always` if you want this behavior when the
Junio C Hamano97bcb482010-11-25 03:16:07170start-point is either a local or remote-tracking branch.
Junio C Hamano1b50ce92007-10-03 12:05:53171
172--no-track::
Junio C Hamano3bd66e92009-04-18 06:17:56173Do not set up "upstream" configuration, even if the
174branch.autosetupmerge configuration variable is true.
Junio C Hamano1b50ce92007-10-03 12:05:53175
Junio C Hamano57827fb2010-01-23 03:02:50176--set-upstream::
Junio C Hamanocae88e22012-03-09 00:13:20177If specified branch does not exist yet or if `--force` has been
178given, acts exactly like `--track`. Otherwise sets up configuration
179like `--track` would when creating the branch, except that where
Junio C Hamano57827fb2010-01-23 03:02:50180branch points to is not changed.
181
Junio C Hamanoeccdd4a2012-09-10 23:28:17182-u <upstream>::
183--set-upstream-to=<upstream>::
184Set up <branchname>'s tracking information so <upstream> is
185considered <branchname>'s upstream branch. If no <branchname>
186is specified, then it defaults to the current branch.
187
188--unset-upstream::
189Remove the upstream information for <branchname>. If no branch
190is specified it defaults to the current branch.
191
Junio C Hamano515ab1d2011-12-09 23:41:20192--edit-description::
193Open an editor and edit the text to explain what the branch is
194for, to be used by various other commands (e.g. `request-pull`).
195
Junio C Hamanocae88e22012-03-09 00:13:20196--contains [<commit>]::
197Only list branches which contain the specified commit (HEAD
Junio C Hamanob5e079f2013-02-08 00:02:52198if not specified). Implies `--list`.
Junio C Hamano47d68a52008-05-06 06:35:40199
Junio C Hamanoc0e55e72009-10-10 00:56:29200--merged [<commit>]::
201Only list branches whose tips are reachable from the
Junio C Hamanob5e079f2013-02-08 00:02:52202specified commit (HEAD if not specified). Implies `--list`.
Junio C Hamano47d68a52008-05-06 06:35:40203
Junio C Hamanoc0e55e72009-10-10 00:56:29204--no-merged [<commit>]::
205Only list branches whose tips are not reachable from the
Junio C Hamanob5e079f2013-02-08 00:02:52206specified commit (HEAD if not specified). Implies `--list`.
Junio C Hamano47d68a52008-05-06 06:35:40207
Junio C Hamano1a4e8412005-12-27 08:17:23208<branchname>::
209The name of the branch to create or delete.
Junio C Hamanob2f5edd2006-05-21 10:50:09210The new branch name must pass all checks defined by
Junio C Hamano35738e82008-01-07 07:55:46211linkgit:git-check-ref-format[1]. Some of these checks
Junio C Hamanob2f5edd2006-05-21 10:50:09212may restrict the characters allowed in a branch name.
Junio C Hamano1a4e8412005-12-27 08:17:23213
Junio C Hamano560a1f62006-01-30 04:19:57214<start-point>::
Junio C Hamanoc0e55e72009-10-10 00:56:29215The new branch head will point to this commit. It may be
216given as a branch name, a commit-id, or a tag. If this
217option is omitted, the current HEAD will be used instead.
Junio C Hamanoc8d88c22006-04-29 07:02:01218
Junio C Hamanoe7935c42006-12-13 21:32:17219<oldbranch>::
220The name of an existing branch to rename.
221
222<newbranch>::
223The new name for an existing branch. The same restrictions as for
Junio C Hamanofd83b8e2009-03-22 08:21:41224<branchname> apply.
Junio C Hamano1a4e8412005-12-27 08:17:23225
226
227Examples
Junio C Hamanoc8d88c22006-04-29 07:02:01228--------
Junio C Hamano1a4e8412005-12-27 08:17:23229
Junio C Hamanofd83b8e2009-03-22 08:21:41230Start development from a known tag::
Junio C Hamano1a4e8412005-12-27 08:17:23231+
232------------
233$ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6
234$ cd my2.6
Junio C Hamanoc8d88c22006-04-29 07:02:01235$ git branch my2.6.14 v2.6.14 <1>
Junio C Hamano1a4e8412005-12-27 08:17:23236$ git checkout my2.6.14
Junio C Hamano1a4e8412005-12-27 08:17:23237------------
Junio C Hamanoc8d88c22006-04-29 07:02:01238+
239<1> This step and the next one could be combined into a single step with
240"checkout -b my2.6.14 v2.6.14".
Junio C Hamano1a4e8412005-12-27 08:17:23241
Junio C Hamanofd83b8e2009-03-22 08:21:41242Delete an unneeded branch::
Junio C Hamano1a4e8412005-12-27 08:17:23243+
244------------
245$ git clone git://git.kernel.org/.../git.git my.git
246$ cd my.git
Junio C Hamano18b6ff32007-07-17 10:40:26247$ git branch -d -r origin/todo origin/html origin/man <1>
248$ git branch -D test <2>
Junio C Hamanoc8d88c22006-04-29 07:02:01249------------
250+
Junio C Hamanofd83b8e2009-03-22 08:21:41251<1> Delete the remote-tracking branches "todo", "html" and "man". The next
252'fetch' or 'pull' will create them again unless you configure them not to.
253See linkgit:git-fetch[1].
254<2> Delete the "test" branch even if the "master" branch (or whichever branch
255is currently checked out) does not have all commits from the test branch.
Junio C Hamanoc8d88c22006-04-29 07:02:01256
257
258Notes
259-----
260
Junio C Hamanofd83b8e2009-03-22 08:21:41261If you are creating a branch that you want to checkout immediately, it is
Junio C Hamanoc8d88c22006-04-29 07:02:01262easier to use the git checkout command with its `-b` option to create
263a branch and check it out with a single command.
264
Junio C Hamanofd83b8e2009-03-22 08:21:41265The options `--contains`, `--merged` and `--no-merged` serve three related
Junio C Hamano47d68a52008-05-06 06:35:40266but different purposes:
267
268- `--contains <commit>` is used to find all branches which will need
269 special attention if <commit> were to be rebased or amended, since those
270 branches contain the specified <commit>.
271
272- `--merged` is used to find all branches which can be safely deleted,
273 since those branches are fully contained by HEAD.
274
275- `--no-merged` is used to find branches which are candidates for merging
276 into HEAD, since those branches are not fully contained by HEAD.
Junio C Hamano1a4e8412005-12-27 08:17:23277
Junio C Hamanoc276ec72009-08-26 01:35:22278SEE ALSO
279--------
280linkgit:git-check-ref-format[1],
281linkgit:git-fetch[1],
Junio C Hamanoc0e55e72009-10-10 00:56:29282linkgit:git-remote[1],
283link:user-manual.html#what-is-a-branch[``Understanding history: What is
284a branch?''] in the Git User's Manual.
Junio C Hamanoc276ec72009-08-26 01:35:22285
Junio C Hamano1a4e8412005-12-27 08:17:23286GIT
287---
Junio C Hamanof7c042d2008-06-06 22:50:53288Part of the linkgit:git[1] suite