Audit rev-parse users again.
Some callers to rev-parse were using the output selection flags
inconsistently.
Signed-off-by: Junio C Hamano <junkio@cox.net>
diff --git a/git-branch-script b/git-branch-script
index a6dfeaf..0ecbd23 100755
--- a/git-branch-script
+++ b/git-branch-script
@@ -25,7 +25,7 @@
head="$2^0" ;;
esac
branchname="$1"
-rev=$(git-rev-parse --revs-only --verify "$head") || exit
+rev=$(git-rev-parse --verify "$head") || exit
[ -e "$GIT_DIR/refs/heads/$branchname" ] && die "$branchname already exists"