1
0
mirror of https://github.com/git/git synced 2024-07-04 16:48:40 +00:00

"git cmd -h" for shell scripts.

Wrappers that use sh-setup took --help but not -h.  Noticed by
Sébastien Pierre.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-04-14 15:54:51 -07:00
parent e51c3b5006
commit cad1ed9535

View File

@ -30,7 +30,7 @@ $LONG_USAGE"
fi
case "$1" in
--h|--he|--hel|--help)
-h|--h|--he|--hel|--help)
echo "$LONG_USAGE"
exit
esac