Tag: subversion

Remove SVN Info from a Folder

This command removes the SVN data from a folder. find -name .svn -exec rm -rf {} \;

Creating a SVN Tag

Creating a tag in SVN means that you copy the entire trunk to another folder in the ‘tags’ folder… svn…

Packaging a Subversion Project

This is the method that I use to package a SVN Project. For CVS projects, the code is slightly different….

Using Subversion – Import, Checkout and Update

Import/New Project svn import <Folder> <Repository> Online Repository Example svn import Nexty https://nexty.svn.sourceforge.net/svnroot/nexty Checkout svn checkout https://nexty.svn.sourceforge.net/svnroot/nexty [<folder>] Update svn…