Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
fd5a0bafa2
commit
54102a2c29
4535 changed files with 1510258 additions and 0 deletions
18
contrib/git-shell-commands/help
Executable file
18
contrib/git-shell-commands/help
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue