Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /data/e/7/e76990b9-3372-4d88-8089-fce36e16744a/webperfection.net/sub/rady-nosu/wp-content/plugins/seo-ultimate/modules/class.su-module.php on line 1195
How to remove svn needs-lock in all files in folders and subfolders

August 25, 2018 | In: Programovanie, Správa linuxu

svn:needs-lock disable

How to remove svn needs-lock in all files in folders and subfolders

Use the check-for-modifications dialog, show all files (including not
modified ones).
Select all files, right-click, choose “properties”. Then remove the
svn:needs-lock property.

.svn-base 
entries

find ./ -iname 'foo' -or  -iname 'bar'
find ./ -type f -print | xargs sed -i 's/svn:needs-lock//g' {};

Share This:

Comments are closed.