Setting up Subversion

From PeformIQ Upgrade
Revision as of 15:59, 28 June 2008 by PeterHarding (talk | contribs)
Jump to navigation Jump to search

Rough Notes

Some Commands

svnadmin 
svnadmin help
svnadmin create /u/svn
svn help
svn import help
svn list file:///u/svn
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