Subversion

All things subversion.

Base Subversion Setup

Xcode and SVN

Resurrecting Deleted Items
Quite simple, for a single file:

to test:

svn cat -r 4 svn://servername/path/file.ext

pipe that to the old one:
svn cat -r 4 svn://servername/path/file.ext > file.ext
svn status
svn commit -m "resurrected file.ext"

For a complete repository:
Determine the "last good" revision. In this example, it is "4".

svn merge -r 4:HEAD file.ext

Fixes

remove the .svn folders recursively:
find . -name ".svn" -type d -exec rm -rf {} \;

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License