Updated script
[core.git] / setup-repos.sh
1 #!/bin/sh
2 # A little helper script of mine to setup a new development check-out directory
3
4 if test "$1" == ""; then
5         echo "Usage: $0 <repos> Setup given repository locally."
6         exit
7 fi
8
9 svn co svn+ssh://www.mxchange.org/var/www/svn-repos/$1/
10 cd $1
11 svn mkdir branches tags trunk
12 svn propset -F ../core/trunk/svn-externals.txt trunk
13 svn commit -m "Initial import with linked core"
14 cd