提交 e4aec26f 编写于 作者: K Kalle Valo 提交者: Junio C Hamano

[PATCH] Change git-branch to list branches

If no argument provided to `git branch`, show available branches and
mark current branch with star.

This is based on patch written by Amos Waterland <apw@rossby.metr.ou.edu>.

[jc: and I changed it to handle subdirectories under refs/heads/ as well.]
Signed-off-by: NKalle Valo <Kalle.Valo@iki.fi>
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 22cff6a5
...@@ -2,16 +2,31 @@ ...@@ -2,16 +2,31 @@
. git-sh-setup-script || die "Not a git archive" . git-sh-setup-script || die "Not a git archive"
branchname="$1" case "$#" in
case "$2" 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)
head=HEAD ;; head=HEAD ;;
*) 2)
head="$2^0" ;; head="$2^0" ;;
esac esac
branchname="$1"
rev=$(git-rev-parse --revs-only --verify "$head") || exit rev=$(git-rev-parse --revs-only --verify "$head") || exit
[ -z "$branchname" ] && die "git branch: I want a branch name"
[ -e "$GIT_DIR/refs/heads/$branchname" ] && die "$branchname already exists" [ -e "$GIT_DIR/refs/heads/$branchname" ] && die "$branchname already exists"
echo $rev > "$GIT_DIR/refs/heads/$branchname" echo $rev > "$GIT_DIR/refs/heads/$branchname"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册