3 USAGE
='[-l] [(-d | -D) <branchname>] | [[-f] <branchname> [<start-point>]] | -r'
4 LONG_USAGE
='If no arguments, show available branches and mark current branch with a star.
5 If one argument, create a new branch <branchname> based off of current HEAD.
6 If two arguments, create a new branch <branchname> based off of <start-point>.'
11 headref
=$
(git-symbolic-ref HEAD |
sed -e 's|^refs/heads/||')
20 die
"Cannot delete the branch you are on." ;;
22 die
"What branch are you on anyway?" ;;
24 branch
=$
(git-show-ref
--verify --hash -- "refs/heads/$branch_name") &&
25 branch
=$
(git-rev-parse
--verify "$branch^0") ||
26 die
"Seriously, what branch are you talking about?"
31 mbs
=$
(git-merge-base
-a "$branch" HEAD |
tr '\012' ' ')
34 # the merge base of branch and HEAD contains branch --
35 # which means that the HEAD contains everything in both.
38 echo >&2 "The branch '$branch_name' is not a strict subset of your current HEAD.
39 If you are sure you want to delete it, run 'git branch -D $branch_name'."
45 git update-ref
-d "refs/heads/$branch_name" "$branch"
46 echo "Deleted branch $branch_name."
51 ls_remote_branches
() {
52 git-rev-parse
--symbolic --all |
53 sed -ne 's|^refs/\(remotes/\)|\1|p' |
59 while case "$#,$1" in 0,*) break ;; *,-*) ;; *) break ;; esac
89 git-rev-parse
--symbolic --branches |
93 if test "$headref" = "$ref"
109 rev=$
(git-rev-parse
--verify "$head") ||
exit
111 git-check-ref-format
"heads/$branchname" ||
112 die
"we do not like '$branchname' as a branch name."
115 if git-show-ref
--verify --quiet -- "refs/heads/$branchname"
117 if test '' = "$force"
119 die
"$branchname already exists."
120 elif test "$branchname" = "$headref"
122 die
"cannot force-update the current branch."
124 prev
=`git rev-parse --verify "refs/heads/$branchname"`
126 if test "$create_log" = 'yes'
128 mkdir
-p $
(dirname "$GIT_DIR/logs/refs/heads/$branchname")
129 touch "$GIT_DIR/logs/refs/heads/$branchname"
131 git update-ref
-m "branch: Created from $head" "refs/heads/$branchname" "$rev" "$prev"