gitshell/new
alemi 6bdae48354 feat: pushing existing commands
i made this some time ago, pushing as one commit
2024-01-12 09:46:11 +01:00

20 lines
339 B
Bash
Executable file

#!/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
mkdir -p "/srv/git/$REPOSITORY"
cd "/srv/git/$REPOSITORY"
git init --bare