gitshell/new

19 lines
304 B
Text
Raw Normal View History

#!/bin/bash
if [ $# -eq 0 ]; then
echo "[!] no repository name specified"
exit
fi
REPOSITORY="$1"
if [[ ! "$REPOSITORY" == *.git ]]; then
REPOSITORY="$REPOSITORY.git"
fi
if [ -d "/srv/git/$REPOSITORY" ]; then
echo "[!] repository already exists"
exit
fi
git init --bare "/srv/git/$REPOSITORY"