mirror of
https://git.alemi.dev/gitshell.git
synced 2024-11-14 11:49:19 +01:00
feat: added pic command
This commit is contained in:
parent
da3234db98
commit
b411f13aa5
1 changed files with 30 additions and 0 deletions
30
pic
Executable file
30
pic
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/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/$REPOSITORY" ]; then
|
||||
echo "[!] repository doesn't exist"
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ $# -eq 1 ]; then
|
||||
git config -f "/srv/git/$REPOSITORY/config" --unset cgit.logo
|
||||
echo "[ ] unset homepage from $REPONAME"
|
||||
else
|
||||
git config -f "/srv/git/$REPOSITORY/config" cgit.logo "$2"
|
||||
echo "[@] set '$2' as $REPONAME homepage"
|
||||
fi
|
||||
|
Loading…
Reference in a new issue