Remove .svn directories from a working copy linux then copy new .svn copies back to it.

Written by James McDonald

May 18, 2012

Warning: This is a procedure that can bork your working copy. Backup and test to make sure you can recover before you even think about doing this.

Regarding this post:
http://andrew.hedges.name/blog/2009/01/25/how-to-recover-from-checksum-mismatch-errors-in-svn

Quickly remove .svn directories from a working copy linux
cd /to/svn/working/copy/dir

e.g.
/etc/squid
find . -type d -name .svn | xargs rm -rf

Checkout a fresh copy of the working copy somewhere else.

cd $HOME

svn co http://yourreposserver/path/to/squid

cd squid
find . -type d -name .svn | xargs -ISVN cp -arv SVN /etc/squid/SVN

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Network speed test host to host

On Ubuntu / Debian apt-get install iperf3 On Windows download it from https://iperf.fr/iperf-download.php#windows Make...