git-branch.sh 934 字节
Newer Older
L
Linus Torvalds 已提交
1 2
#!/bin/sh

J
Junio C Hamano 已提交
3
. git-sh-setup || die "Not a git archive"
L
Linus Torvalds 已提交
4

5 6 7 8 9 10 11 12 13 14
usage () {
    echo >&2 "usage: $(basename $0)"' [<branchname> [start-point]]

If no arguments, show available branches and mark current branch with a star.
If one argument, create a new branch <branchname> based off of current HEAD.
If two arguments, create a new branch <branchname> based off of <start-point>.
'
    exit 1
}

15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
case "$#" in
0)
	headref=$(readlink "$GIT_DIR/HEAD" | sed -e 's|^refs/heads/||')
	git-rev-parse --symbolic --all |
	sed -ne 's|^refs/heads/||p' |
	sort |
	while read ref
	do
		if test "$headref" = "$ref"
		then
			pfx='*'
		else
			pfx=' '
		fi
		echo "$pfx $ref"
	done
	exit 0 ;;
1)
33
	head=HEAD ;;
34
2)
35 36
	head="$2^0" ;;
esac
37
branchname="$1"
38 39 40 41 42 43

case "$branchname" in
-*)
	usage;;
esac

J
Junio C Hamano 已提交
44
rev=$(git-rev-parse --verify "$head") || exit
L
Linus Torvalds 已提交
45 46 47 48

[ -e "$GIT_DIR/refs/heads/$branchname" ] && die "$branchname already exists"

echo $rev > "$GIT_DIR/refs/heads/$branchname"