merge(third_party/git): Merge squashed git subtree at v2.23.0
Merge commit '1b593e1ea4
' as 'third_party/git'
This commit is contained in:
commit
7ef0d62730
3629 changed files with 1139935 additions and 0 deletions
18
third_party/git/contrib/git-shell-commands/help
vendored
Executable file
18
third_party/git/contrib/git-shell-commands/help
vendored
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