summaryrefslogtreecommitdiff
path: root/git-branch-script
diff options
context:
space:
mode:
Diffstat (limited to 'git-branch-script')
-rwxr-xr-xgit-branch-script32
1 files changed, 0 insertions, 32 deletions
diff --git a/git-branch-script b/git-branch-script
deleted file mode 100755
index 0ecbd239ac..0000000000
--- a/git-branch-script
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-. git-sh-setup-script || die "Not a git archive"
-
-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 --verify "$head") || exit
-
-[ -e "$GIT_DIR/refs/heads/$branchname" ] && die "$branchname already exists"
-
-echo $rev > "$GIT_DIR/refs/heads/$branchname"