blob: acd24a9af137d5c462c0487f2d7de5110e36a90d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
cat <<EOF
Available commands:
new [REPO_NAME] create a new bare repository
ls list repositories
describe [REPO_NAME] [DESCRIPTION] set repository description
rename [OLD_NAME] [NEW_NAME] rename a repository
delete [REPO_NAME] delete a repository
mirror-to [REPO_NAME] [GIT_URL] set up hourly mirror to a remote git URL
mirror-from [REPO_NAME] [GIT_URL] set up hourly fetch from a remote git URL
EOF
|