/
usr
/
share
/
doc
/
git
/
contrib
/
git-shell-commands
/
/usr/share/doc/git/contrib/git-shell-commands
mkdir
upload
Name
Size
Mode
Actions
help
283
0644
edit
dl
rm
list
227
0644
edit
dl
rm
README
839
0644
edit
dl
rm
Edit:
/usr/share/doc/git/contrib/git-shell-commands/help
(283B)
#!/bin/sh if tty -s then echo "Run 'help' for help, or 'exit' to leave. Available commands:" else echo "Run 'help' for help. Available commands:" fi cd "$(dirname "$0")" for cmd in * do case "$cmd" in help) ;; *) [ -f "$cmd" ] && [ -x "$cmd" ] && echo "$cmd" ;; esac done
Save
cmd:
run