blob: 4f5b5d5028e15f693440baa57358ab4c898994e8 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-branch(1)
2=============
3
4NAME
5----
Junio C Hamanoc8d88c22006-04-29 07:02:016git-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 Hamano53edd072006-11-25 10:05:2111'git-branch' [-r] [-a] [-v] [--abbrev=<length>]
Junio C Hamano341071d2006-06-04 07:24:4812'git-branch' [-l] [-f] <branchname> [<start-point>]
Junio C Hamanoc8d88c22006-04-29 07:02:0113'git-branch' (-d | -D) <branchname>...
Junio C Hamano1a4e8412005-12-27 08:17:2314
15DESCRIPTION
16-----------
Junio C Hamanofe9acab2006-11-24 12:10:5517With no arguments given a list of existing branches
Junio C Hamanoc8d88c22006-04-29 07:02:0118will be shown, the current branch will be highlighted with an asterisk.
Junio C Hamanofe9acab2006-11-24 12:10:5519Option `-r` causes the remote-tracking branches to be listed,
20and option `-a` shows both.
Junio C Hamano1a4e8412005-12-27 08:17:2321
Junio C Hamanoc8d88c22006-04-29 07:02:0122In its second form, a new branch named <branchname> will be created.
23It will start out with a head equal to the one given as <start-point>.
24If no <start-point> is given, the branch will be created with a head
25equal to that of the currently checked out branch.
26
27With a `-d` or `-D` option, `<branchname>` will be deleted. You may
Junio C Hamano341071d2006-06-04 07:24:4828specify more than one branch for deletion. If the branch currently
29has a ref log then the ref log will also be deleted.
Junio C Hamano2b135272006-03-18 07:45:4230
31
Junio C Hamano1a4e8412005-12-27 08:17:2332OPTIONS
33-------
34-d::
35Delete a branch. The branch must be fully merged.
36
37-D::
38Delete a branch irrespective of its index status.
39
Junio C Hamano341071d2006-06-04 07:24:4840-l::
41Create the branch's ref log. This activates recording of
42all changes to made the branch ref, enabling use of date
43based sha1 expressions such as "<branchname>@{yesterday}".
44
Junio C Hamano560a1f62006-01-30 04:19:5745-f::
Junio C Hamanoc8d88c22006-04-29 07:02:0146Force the creation of a new branch even if it means deleting
47a branch that already exists with the same name.
48
49-r::
Junio C Hamanofe9acab2006-11-24 12:10:5550List the remote-tracking branches.
51
52-a::
53List both remote-tracking branches and local branches.
Junio C Hamano560a1f62006-01-30 04:19:5754
Junio C Hamano53edd072006-11-25 10:05:2155-v::
56Show sha1 and subject message for each head.
57
58--abbrev=<length>::
59Alter minimum display length for sha1 in output listing,
60default value is 7.
61
Junio C Hamano1a4e8412005-12-27 08:17:2362<branchname>::
63The name of the branch to create or delete.
Junio C Hamanob2f5edd2006-05-21 10:50:0964The new branch name must pass all checks defined by
65gitlink:git-check-ref-format[1]. Some of these checks
66may restrict the characters allowed in a branch name.
Junio C Hamano1a4e8412005-12-27 08:17:2367
Junio C Hamano560a1f62006-01-30 04:19:5768<start-point>::
Junio C Hamanoc8d88c22006-04-29 07:02:0169The new branch will be created with a HEAD equal to this. It may
70be given as a branch name, a commit-id, or a tag. If this option
71is omitted, the current branch is assumed.
72
Junio C Hamano1a4e8412005-12-27 08:17:2373
74
75Examples
Junio C Hamanoc8d88c22006-04-29 07:02:0176--------
Junio C Hamano1a4e8412005-12-27 08:17:2377
Junio C Hamano2b135272006-03-18 07:45:4278Start development off of a known tag::
Junio C Hamano1a4e8412005-12-27 08:17:2379+
80------------
81$ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6
82$ cd my2.6
Junio C Hamanoc8d88c22006-04-29 07:02:0183$ git branch my2.6.14 v2.6.14 <1>
Junio C Hamano1a4e8412005-12-27 08:17:2384$ git checkout my2.6.14
Junio C Hamano1a4e8412005-12-27 08:17:2385------------
Junio C Hamanoc8d88c22006-04-29 07:02:0186+
87<1> This step and the next one could be combined into a single step with
88"checkout -b my2.6.14 v2.6.14".
Junio C Hamano1a4e8412005-12-27 08:17:2389
90Delete unneeded branch::
91+
92------------
93$ git clone git://git.kernel.org/.../git.git my.git
94$ cd my.git
Junio C Hamanoc8d88c22006-04-29 07:02:0195$ git branch -D todo <1>
96------------
97+
Junio C Hamano1a4e8412005-12-27 08:17:2398<1> delete todo branch even if the "master" branch does not have all
99commits from todo branch.
Junio C Hamanoc8d88c22006-04-29 07:02:01100
101
102Notes
103-----
104
105If you are creating a branch that you want to immediately checkout, it's
106easier to use the git checkout command with its `-b` option to create
107a branch and check it out with a single command.
108
Junio C Hamano1a4e8412005-12-27 08:17:23109
110Author
111------
112Written by Linus Torvalds <torvalds@osdl.org> and Junio C Hamano <junkio@cox.net>
113
114Documentation
115--------------
116Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
117
118GIT
119---
120Part of the gitlink:git[7] suite
121