git-checkout-script: use "--verify --revs-only" to parse revs

Sven Verdoolaege points out that I added the --verify option to
git-rev-parse exactly for things like this, but didn't update the
users.
This commit is contained in:
Linus Torvalds 2005-06-27 12:12:18 -07:00
parent e18088451d
commit e2efb676ef

View file

@ -12,7 +12,7 @@ while [ "$#" != "0" ]; do
force=1
;;
*)
rev=$(git-rev-parse "$arg")
rev=$(git-rev-parse --verify --revs-only "$arg")
if [ -z "$rev" ]; then
echo "unknown flag $arg"
exit 1