summaryrefslogtreecommitdiff
path: root/git
blob: 476aeec2791971f38daeebb8c2b7ab9854229944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
 
cmd=
path=$(dirname $0)
case "$#" in
0)	;;
*)	cmd="$1"
	shift
	test -x $path/git-$cmd-script && exec $path/git-$cmd-script "$@"
	test -x $path/git-$cmd && exec $path/git-$cmd "$@" ;;
esac
 
echo "Usage: git COMMAND [OPTIONS] [TARGET]"
if [ -n "$cmd" ]; then
    echo " git command '$cmd' not found: commands are:"
else
    echo " git commands are:"
fi
 
ls $path | sed -ne 's/^git-\(.*\)-script/  \1/p' | fmt