ASTDan Posted January 11, 2010 Report Share Posted January 11, 2010 I have tried to search for this but have found many broken links. How do you set the svn:needs-lock properties for use in a Lock/Unlock model in TortoiseSVN? Thanks Dan Quote Link to comment
crelf Posted January 11, 2010 Report Share Posted January 11, 2010 How do you set the svn:needs-lock properties for use in a Lock/Unlock model in TortoiseSVN? You can set it repository wide (I think that only works for new items?), or set it on a file-by-file basis (right click on the file, TortoiseSVN, properties, New..., property name = svn:needs-lock). Our IT dept has a script that runs after TortoiseSVN install that makes our clients add the needs-lock property to all items added to the repo - not sure if I can share that, but let me know if that's what you're asking for. Quote Link to comment
Mark Smith Posted January 11, 2010 Report Share Posted January 11, 2010 I have tried to search for this but have found many broken links. How do you set the svn:needs-lock properties for use in a Lock/Unlock model in TortoiseSVN? Thanks Dan Add these properties to C:\Documents and Settings\<username>\Application Data\Subversion\config [miscellany] enable-auto-props = yes [auto-props] *.vi = svn:needs-lock=yes *.ctl = svn:needs-lock=yes *.vit = svn:needs-lock=yes *.ctt = svn:needs-lock=yes *.rtm = svn:needs-lock=yes *.llb = svn:needs-lock=yes *.lvproj = svn:needs-lock=yes *.lvlib = svn:needs-lock=yes *.lvclass = svn:needs-lock=yes Now, all of these file types will get created with the lock enabled - I think - it's been a while since I looked closely at this Mark Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.