]> git.ipfire.org Git - thirdparty/git.git/blame - git.sh
[PATCH] Make the test more shell generic and fix missing Solaris find option
[thirdparty/git.git] / git.sh
CommitLineData
215a7ad1
JH
1#!/bin/sh
2
3cmd=
4path=$(dirname $0)
5case "$#" in
60) ;;
7*) cmd="$1"
8 shift
6a2e50f9
JH
9 case "$cmd" in
10 -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
11 echo "git version @@GIT_VERSION@@"
12 exit 0 ;;
13 esac
215a7ad1
JH
14 test -x $path/git-$cmd && exec $path/git-$cmd "$@" ;;
15esac
16
17echo "Usage: git COMMAND [OPTIONS] [TARGET]"
18if [ -n "$cmd" ]; then
19 echo " git command '$cmd' not found: commands are:"
20else
21 echo " git commands are:"
22fi
23
24cat <<\EOF
25 add apply archimport bisect branch checkout cherry clone
26 commit count-objects cvsimport diff fetch format-patch
27 fsck-cache get-tar-commit-id init-db log ls-remote octopus
28 pack-objects parse-remote patch-id prune pull push rebase
29 relink rename repack request-pull reset resolve revert
30 send-email shortlog show-branch status tag verify-tag
31 whatchanged
32EOF