blob: 52d887478823e640bf2fa4bdfacf5ab60e2c2148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Git-shell interactive login banner
# When this executable exists, it's shown instead of the default message
cat <<'EOF'
Welcome to the git repository server!
Available commands: help, list, init-repo, delete-repo
Run "help" for more information.
EOF
|