Displaying 1 result from an estimated 1 matches for "myfol".
Did you mean:
mycol
2008 Dec 17
1
Rsync and recursion protection with .svn folders
...lder is deleted from src I would like it to be
deleted from dst, this implies that its .svn folder is deleted in dst.
(Additions and changes are handled automatically by svn.)
So what I did is a rsync fom src to dst with --exclude=".svn" --delete
--force. However if I delete a folder say myfol from source which also
exists in dst, I says that it cannot delete it. Obviously this is due to the
fact that rsync recurses and finds and protects the .svn in myfol.
I have tried using a combination of risk and protect, include and exclude to
try and delete the redundant folders, but with no avai...