summaryrefslogtreecommitdiff
path: root/git-branch-script
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-08-17 14:25:08 -0700
committerJunio C Hamano <junkio@cox.net>2005-08-17 14:25:08 -0700
commitca08acca68bf0e1c89fcbc29af18b68ea7bf5c36 (patch)
tree8cfaa7e46ea580c54269ef50103b6dafd3ab9493 /git-branch-script
parent6680153441de6fbba07868d5f54af74d31a3ff13 (diff)
parentda139813a7242f96e6926fd15881b9df94625132 (diff)
downloadgit-ca08acca68bf0e1c89fcbc29af18b68ea7bf5c36.tar.gz
Merge changes from master.
Diffstat (limited to 'git-branch-script')
-rwxr-xr-xgit-branch-script25
1 files changed, 20 insertions, 5 deletions
diff --git a/git-branch-script b/git-branch-script
index 041ca515ae..a6dfeaf55f 100755
--- a/git-branch-script
+++ b/git-branch-script
@@ -2,16 +2,31 @@
. git-sh-setup-script || die "Not a git archive"
-branchname="$1"
-case "$2" in
-'')
+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)
head=HEAD ;;
-*)
+2)
head="$2^0" ;;
esac
+branchname="$1"
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"
echo $rev > "$GIT_DIR/refs/heads/$branchname"