Documentation/describe: improve one-line summary
[git.git] / contrib / git-shell-commands / help
blob535770c6ec194f6910d527cf39082012307fe0c3
1 #!/bin/sh
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
10 cd "$(dirname "$0")"
12 for cmd in *
14 case "$cmd" in
15 help) ;;
16 *) [ -f "$cmd" ] && [ -x "$cmd" ] && echo "$cmd" ;;
17 esac
18 done