Showing posts with label svn. Show all posts
Showing posts with label svn. Show all posts

Tuesday, 23 September 2014

SVN: delete all .svn (recursively)

Windows:
FOR /F "tokens=*" %G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%G"

Linux:
find . -type d -name '.svn' -print -exec rm -rf {} \;

Monday, 31 October 2011

svn error "svn: Your .svn/tmp directory may be missing or corrupt; run 'svn cleanup' and try again"

$ svn cleanup 
svn: Your .svn/tmp directory may be missing or corrupt; run 'svn cleanup' and try again
svn: Can't open file '.svn/tmp/entries': No such file or directory
$ touch .svn/tmp/entries
$ svn cleanup 
$