Posts Tagged With: subversion

Remove SVN Info from a Folder

Tagged with: , , , ,

This command removes the SVN data from a folder.


find -name .svn -exec rm -rf {} \;
2 Comments »

Creating a SVN Tag

Tagged with: , , , ,

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


svn copy trunk/ tags/TAG_NAME
No Comments »

Packaging a Subversion Project

Tagged with: , , , , ,

This is the method that I use to package a SVN Project. For CVS projects, the code is slightly different. Please note that the second line requires bash to work.

This is how I packaged nexty


svn checkout https://nexty.svn.sourceforge.net/svnroot/nexty
find nexty/ -name .svn -exec rm -rf {} \;
tar -czf nexty.tar.gz nexty/
rm -rf nexty/
No Comments »

Using Subversion – Import, Checkout and Update

Tagged with: , , , , , , ,

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 update

1 Comment »