]> git.ipfire.org Git - thirdparty/git.git/blob - contrib/git-shell-commands/help
Merge branch 'tz/fsf-address-update' of ../git-gui into tz/fsf-address-update
[thirdparty/git.git] / contrib / git-shell-commands / help
1 #!/bin/sh
2
3 if tty -s
4 then
5 echo "Run 'help' for help, or 'exit' to leave. Available commands:"
6 else
7 echo "Run 'help' for help. Available commands:"
8 fi
9
10 cd "$(dirname "$0")"
11
12 for cmd in *
13 do
14 case "$cmd" in
15 help) ;;
16 *) [ -f "$cmd" ] && [ -x "$cmd" ] && echo "$cmd" ;;
17 esac
18 done