X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=id-new-project%2Fid-new-project.sh;h=3fa1bccbe7288fd3a13c8ca8392e8402886710c6;hb=92d94b019504a02e11db2d7f5faeb42da41f3a68;hp=507dc06659ca88b0a64806f2296f59e2a0bda1cb;hpb=dbc885b7e60e55db01ca32209305d168dc2868a1;p=git-tools-moved-to-github.git diff --git a/id-new-project/id-new-project.sh b/id-new-project/id-new-project.sh index 507dc06..3fa1bcc 100755 --- a/id-new-project/id-new-project.sh +++ b/id-new-project/id-new-project.sh @@ -1,8 +1,9 @@ #!/bin/sh usage() { + echo "" echo "Usage:" - echo "id-new-project.sh srcdir description {pub/private}" + echo "id-new-project.sh srcdir description {pub/private/admin}" echo "For example:" echo "id-new-project.sh ../myproj \"Which does good things\" private" exit 1 @@ -12,9 +13,10 @@ SRC=$1 DESC=$2 TYPE=$3 -if test -z "${TYPE}"; then - usage -fi +case "${TYPE}" in + pub | private | admin ) ;; + * ) echo "invalid type: '$TYPE', use pub or private or admin "; usage ;; +esac if test ! -e post-receive; then echo "file post-receive must be in the current directory" @@ -34,11 +36,12 @@ if git clone --bare $SRC ${PROJ}.git; then touch git-daemon-export-ok echo "${DESC}" >description git config core.sharedRepository true + git config core.ignorecase true cp ../post-receive hooks/post-receive chmod +x hooks/post-receive git config hooks.mailinglist gitid@indexdata.dk cd .. - scp -r ${PROJ}.git git.indexdata.com:/home/git/${TYPE} - ssh git.indexdata.com "cd /home/git/${TYPE}/${PROJ}.git && chmod -R g+w . && chgrp -R git . && find . -type d | xargs chmod g+s" + scp -P 222 -r ${PROJ}.git git.indexdata.com:/home/git/${TYPE} + ssh -p 222 git.indexdata.com "cd /home/git/${TYPE}/${PROJ}.git && chmod -R g+w . && chgrp -R git . && find . -type d | xargs chmod g+s" fi