Setting up Subversion
Revision as of 16:56, 28 June 2008 by PeterHarding (talk | contribs) (New page: =Rough Notes= ==Some Commands== <pre> svn list file:///u/svn/projects/MDCS/Scripts </pre> ==Script to initialize the repository== <pre> [root@xxx u]# cat setup_svn.sh #!/bin/sh DIR...)
Rough Notes
Some Commands
svn list file:///u/svn/projects/MDCS/Scripts
Script to initialize the repository
[root@xxx u]# cat setup_svn.sh #!/bin/sh DIR=/u/svn/projects/XXX/Scripts set -x if [ -d $DIR ] ; then rm -rf $DIR fi mkdir $DIR svnadmin create $DIR ls -l $DIR