]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-branch.txt
Everyday GIT with 20 commands
[thirdparty/git.git] / Documentation / git-branch.txt
CommitLineData
215a7ad1
JH
1git-branch(1)
2=============
7fc9d69f
JH
3
4NAME
5----
d4072c97 6git-branch - Create a new branch, or remove an old one.
7fc9d69f
JH
7
8SYNOPSIS
9--------
d4072c97 10'git-branch' [-d | -D] [<branchname> [start-point]]
7fc9d69f
JH
11
12DESCRIPTION
13-----------
52a22d1e
LAS
14If no argument is provided, show available branches and mark current
15branch with star. Otherwise, create a new branch of name <branchname>.
7fc9d69f 16
52a22d1e
LAS
17If a starting point is also specified, that will be where the branch is
18created, otherwise it will be created at the current HEAD.
7fc9d69f
JH
19
20OPTIONS
21-------
d4072c97
AE
22-d::
23 Delete a branch. The branch must be fully merged.
24
25-D::
26 Delete a branch irrespective of its index status.
27
52a22d1e 28<branchname>::
d4072c97 29 The name of the branch to create or delete.
7fc9d69f 30
52a22d1e 31start-point::
d4072c97
AE
32 Where to create the branch; defaults to HEAD. This
33 option has no meaning with -d and -D.
7fc9d69f
JH
34
35Author
36------
37Written by Linus Torvalds <torvalds@osdl.org> and Junio C Hamano <junkio@cox.net>
38
39Documentation
40--------------
41Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
42
43GIT
44---
a7154e91 45Part of the gitlink:git[7] suite
7fc9d69f 46