Posts Tagged ‘Development’

Upgrading subversion client to 1.6.x for Ubuntu 8.04 hardy

Tortoise SVN and other IDE integrated subversion clients was changing format of .svn/* files so that was not possible to use command line subversion client which is more secure.
Finally got upgraded subversion client for Ubuntu Hardy (8.04).
1. Copy source list from: https://launchpad.net/~anders-kaseorg/+archive/subversion-1.6
2. Add lists to /etc/apt/sources.list at bottom of file - Save file
3. apt-get install subversion
(Here [...]

How to use svnignore!

1. Settings svn:ignore property
svn propset svn:ignore “*” folder1/
svn propset svn:ignore “*” folder2
2. Commit to apply changes.
svn ci -m “Data in these folders will be ignored by svn”
Source: http://www.devcha.com/2008/02/how-to-make-svn-ignore-some-folders.html