blob: 392304eb15834570f79e08e04f8148f37eea12e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 gitweb.category
echo "[ ] unset category from $REPONAME"
else
git config -f "/srv/git/$REPOSITORY/config" gitweb.category "$2"
echo "[@] set '$2' as $REPONAME category"
fi
|