]> git.phdru.name Git - git-scripts.git/blob - configure-sf
Add source URL
[git-scripts.git] / configure-sf
1 #! /bin/sh
2
3 # Origin: http://blog.gorwits.me.uk/index.html%3Fp=529.html
4
5 if [ -z "$3" ]; then
6    echo "Usage: $0 PROJECTNAME REPONAME MLIST [prefix]" >&2
7    exit 1
8 fi
9
10 PROJECTNAME="$1"
11 REPONAME="$2"
12 MLIST="$3"
13 prefix="$4"
14
15 cd /home/git/p/"$PROJECTNAME/$REPONAME".git &&
16 echo "$PROJECTNAME git repository ($REPONAME)" > description
17 #git config --global --bool receive.denyNonFastForwards true &&
18
19 #curl -L -o hooks/post-receive-user https://git.kernel.org/cgit/git/git.git/plain/contrib/hooks/post-receive-email &&
20 #http://tinyurl.com/git-post-commit-email
21 wget -O hooks/post-receive-user https://git.kernel.org/cgit/git/git.git/plain/contrib/hooks/post-receive-email &&
22 chmod +x hooks/post-receive-user &&
23 #chmod g+w hooks/post-receive-user &&
24
25 git config hooks.diffopts "--stat --summary --find-copies-harder -p"
26 git config hooks.emailmaxlines 500 &&
27 if [ -n "$prefix" ]; then
28    git config hooks.emailprefix "$prefix"
29 fi &&
30 git config hooks.envelopesender noreply@sourceforge.net &&
31 git config hooks.mailinglist $MLIST@lists.sourceforge.net
32 #git config hooks.showrev "t=%s; printf 'http://$PROJECTNAME.git.sourceforge.net/git/gitweb.cgi?p=$PROJECTNAME/$REPONAME;a=commitdiff;h=%%s' ; echo;echo; git show -C ; echo"