My SVN Server IP Address in this example: 192.168.1.1 Path to SVN repos on the box: /var/svn/g2a
REMOVE FILE OR FOLDER
eg. svn remove components eg. svn remove templates/index.php
svn commit components
CHECKOUT from where you want the checkout to go to just outside the folder
svn checkout svn://192.168.1.1/blah
CHECKIN from within the svn folder
svn import . svn://localhost/project_name
STARTUP
svnserve -d -r /var/svn/g2a
IMPORT
from within the folder you want SVN'd
svn import svn://192.168.1.1/blah
DELETE PROJECT
svn delete -m "Comment goes here" svn://192.168.1.1/blah
IGNORE A FOLDER RECURSIVELY From within the folder you want to igore
svn propset -R svn:ignore * cache/models
LINK TO USEFUL SVN COMMANDS Useful SVN commands
By PHPin24 @ 2009-08-05 13:41:04
|