Home ›
Locking an SVN repository (or, another reason to use Git)Locking an SVN repository (or, another reason to use Git)
Submitted by Benjamin Melançon on April 15, 2009 - 9:26am
Searched words:
svn lock directory
git-svn svn lock directory
svn recursively lock all files
The manual: http://svnbook.red-bean.com/en/1.2/svn.advanced.locking.html
The useful info: http://marc.info/?l=subversion-users&m=117814302607694&w=2
cd /repos/path/of/interest
find . -type f -exec svn lock '{}' ';'
And when done:
find . -type f -exec svn lock '{}' ';'
Resolution
More like this
- Change the SVN branch your repository checkout is using
- See what Subversion repository you are drawing from with vi .svn/entries
- Change the location of an SVN repository for the working copy
- Using Subversion's "include" functionality– the svn:externals property
- Git profile project in an SVN Drupal site


Comments
thanks
svn suks
Post new comment