X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=git-branch-script;h=0ecbd239acf0d035ba1a7c9471c2b29b3bb4b884;hb=2ab141a26f93c4d97e243a6be8a38a7dd4eb35a3;hp=041ca515ae700252ca03ea928b544be6bcdeab9c;hpb=80bd6f3064a6009cd18a4dab9ce6d29681cec4af;p=git.git diff --git a/git-branch-script b/git-branch-script index 041ca515..0ecbd239 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 -rev=$(git-rev-parse --revs-only --verify "$head") || exit +branchname="$1" +rev=$(git-rev-parse --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"