Enable ref log creation in git checkout -b.
[git.git] / Documentation / git-branch.txt
1 git-branch(1)
2 =============
3
4 NAME
5 ----
6 git-branch - List, create, or delete branches.
7
8 SYNOPSIS
9 --------
10 [verse]
11 'git-branch' [-r]
12 'git-branch' [-l] [-f] <branchname> [<start-point>]
13 'git-branch' (-d | -D) <branchname>...
14
15 DESCRIPTION
16 -----------
17 With no arguments given (or just `-r`) a list of available branches
18 will be shown, the current branch will be highlighted with an asterisk.
19
20 In its second form, a new branch named <branchname> will be created.
21 It will start out with a head equal to the one given as <start-point>.
22 If no <start-point> is given, the branch will be created with a head
23 equal to that of the currently checked out branch.
24
25 With a `-d` or `-D` option, `<branchname>` will be deleted.  You may
26 specify more than one branch for deletion.  If the branch currently
27 has a ref log then the ref log will also be deleted.
28
29
30 OPTIONS
31 -------
32 -d::
33         Delete a branch. The branch must be fully merged.
34
35 -D::
36         Delete a branch irrespective of its index status.
37
38 -l::
39         Create the branch's ref log.  This activates recording of
40         all changes to made the branch ref, enabling use of date
41         based sha1 expressions such as "<branchname>@{yesterday}".
42
43 -f::
44         Force the creation of a new branch even if it means deleting
45         a branch that already exists with the same name.
46
47 -r::
48         List only the "remote" branches.
49
50 <branchname>::
51         The name of the branch to create or delete.
52
53 <start-point>::
54         The new branch will be created with a HEAD equal to this.  It may
55         be given as a branch name, a commit-id, or a tag.  If this option
56         is omitted, the current branch is assumed.
57
58
59
60 Examples
61 --------
62
63 Start development off of a known tag::
64 +
65 ------------
66 $ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6
67 $ cd my2.6
68 $ git branch my2.6.14 v2.6.14   <1>
69 $ git checkout my2.6.14
70 ------------
71 +
72 <1> This step and the next one could be combined into a single step with
73 "checkout -b my2.6.14 v2.6.14".
74
75 Delete unneeded branch::
76 +
77 ------------
78 $ git clone git://git.kernel.org/.../git.git my.git
79 $ cd my.git
80 $ git branch -D todo    <1>
81 ------------
82 +
83 <1> delete todo branch even if the "master" branch does not have all
84 commits from todo branch.
85
86
87 Notes
88 -----
89
90 If you are creating a branch that you want to immediately checkout, it's
91 easier to use the git checkout command with its `-b` option to create
92 a branch and check it out with a single command.
93
94
95 Author
96 ------
97 Written by Linus Torvalds <torvalds@osdl.org> and Junio C Hamano <junkio@cox.net>
98
99 Documentation
100 --------------
101 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
102
103 GIT
104 ---
105 Part of the gitlink:git[7] suite
106