6 git-branch - Create a new branch, or remove an old one.
10 'git-branch' [-d | -D] [<branchname> [start-point]]
14 If no argument is provided, show available branches and mark current
15 branch with star. Otherwise, create a new branch of name <branchname>.
17 If a starting point is also specified, that will be where the branch is
18 created, otherwise it will be created at the current HEAD.
23 Delete a branch. The branch must be fully merged.
26 Delete a branch irrespective of its index status.
29 The name of the branch to create or delete.
32 Where to create the branch; defaults to HEAD. This
33 option has no meaning with -d and -D.
37 Written by Linus Torvalds <torvalds@osdl.org> and Junio C Hamano <junkio@cox.net>
41 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
45 Part of the gitlink:git[7] suite