gitshell/new

21 lines
439 B
Text
Raw Permalink 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"
2024-02-08 19:47:28 +01:00
git config -f "/srv/git/$REPOSITORY/config" cgit.ignore 1
2024-02-13 15:54:42 +01:00
git config -f "/srv/git/$REPOSITORY/config" cgit.name "${REPOSITORY//.git/}"