Setting up Subversion

From PeformIQ Upgrade
Revision as of 15: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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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