Tag: svn

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…

Some File Operation in SVN

Moving, Coping and Deletion svn mv file.php to_folder/ #Move svn cp file.php to_folder/ #Copy svn rm file.php #Deletion

SourceForge Project Packager – from SVN source

This script will package your SVN code to a tar.gz file. Just give the name of the project as the…

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…