How do you turn off Requires-Lock for every file in a SVN Repository and all future files that get added to it?

link|improve this question
Is this related to the "svn:needs-lock" property? There might be more here: svnbook.red-bean.com/en/1.2/svn.advanced.locking.html – Stijn Sanders Nov 29 '09 at 20:00
feedback

1 Answer

It's off by default. You can recursively remove the property on all files in a working copy:

svn propdel svn:needs-lock --depth=infinity 

Normally new files don't get the property set automatically. It was probably configured to as an auto-prop.

See $HOME/.subversion/config (linux) or %APPDATA%/Subversion/config (Windows). Look for auto-props, to see if svn:needs-lock gets set.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.