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

25 lines
469 B
Bash
Executable file

#!/bin/bash
if [ $# -eq 0 ]; then
echo "[!] no repository name specified"
exit
fi
REPOSITORY="$1" # with .git
REPONAME="$1" # without .git
if [[ ! "$REPOSITORY" == *.git ]]; then
REPOSITORY="$REPOSITORY.git"
fi
if [[ "$REPONAME" == *.git ]]; then
REPONAME=$(echo "$REPONAME" | sed 's/\.git$//')
fi
if [ ! -d "/srv/git/.public/$REPONAME" ]; then
echo "[!] repository isn't public"
exit
fi
rm "/srv/git/.public/$REPONAME"
echo "[#] made $REPONAME hidden"