Browse Source

Merge branch 'jc/checkout'

* jc/checkout:
  git-checkout: allow "checkout HEAD -- path"
maint
Junio C Hamano 19 years ago
parent
commit
0225de86a4
  1. 4
      git-checkout.sh

4
git-checkout.sh

@ -67,6 +67,10 @@ while [ "$#" != "0" ]; do @@ -67,6 +67,10 @@ while [ "$#" != "0" ]; do
set x "$arg" "$@"
shift
fi
case "$1" in
--)
shift ;;
esac
break
;;
esac

Loading…
Cancel
Save