17 lines
296 B
Text
17 lines
296 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ -z "$1" ]]; then
|
||
|
echo "Please enter a repository name"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [[ -d "$1.git" ]]; then
|
||
|
echo "Repo $1 already exists"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
/usr/bin/git init --bare "$1.git"
|
||
|
/usr/bin/git -C "$1.git" config http.receivepack true
|
||
|
echo "Successfully created repository $1"
|
||
|
|