mirror of
https://git.alemi.dev/gitshell.git
synced 2024-11-14 11:49:19 +01:00
28 lines
437 B
Text
28 lines
437 B
Text
|
#!/bin/bash
|
||
|
|
||
|
REPOSITORY="$1"
|
||
|
|
||
|
if [[ ! "$REPOSITORY" == *.git ]]; then
|
||
|
REPOSITORY="$REPOSITORY.git"
|
||
|
fi
|
||
|
|
||
|
if [ $# -eq 0 ]; then
|
||
|
echo "[!] no repository name specified"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
if [ ! -d "/srv/git/$REPOSITORY" ]; then
|
||
|
echo "[!] repository does not exist"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
if [ $# -eq 1 ]; then
|
||
|
echo "[!] no branch name specified"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
|
||
|
echo "$2" > "/srv/git/$REPOSITORY/description"
|
||
|
echo "Changed description of $REPOSITORY to '$2'"
|
||
|
|