1
0
mirror of https://github.com/git/git.git synced 2024-11-10 12:13:03 +01:00

Add usage statement to git-checkout.sh

Signed-off-by: Chris Shoemaker <c.shoemaker@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Chris Shoemaker 2005-10-29 17:46:41 -04:00 committed by Junio C Hamano
parent c2d07d24e4
commit b0bafe0364

@ -1,6 +1,10 @@
#!/bin/sh
. git-sh-setup || die "Not a git archive"
usage () {
die "usage: git checkout [-f] [-b <new_branch>] [<branch>] [<paths>...]"
}
old=$(git-rev-parse HEAD)
new=
force=
@ -26,6 +30,9 @@ while [ "$#" != "0" ]; do
--)
break
;;
-*)
usage
;;
*)
if rev=$(git-rev-parse --verify "$arg^0" 2>/dev/null)
then