How to find my Subversion server version number?

To find the version of the subversion REPOSITORY you can: Look to the repository on the web and on the bottom of the page it will say something like: “Powered by Subversion version 1.5.2 (r32768).” From the command line: <insert curl, grep oneliner here> If not displayed, view source of the page <svn version=”1.6.13 (r1002816)” … Read more

Can you do a partial checkout with Subversion?

Indeed, thanks to the comments to my post here, it looks like sparse directories are the way to go. I believe the following should do it: svn checkout –depth empty http://svnserver/trunk/proj svn update –set-depth infinity proj/foo svn update –set-depth infinity proj/bar svn update –set-depth infinity proj/baz Alternatively, –depth immediates instead of empty checks out files … Read more

Working copy XXX locked and cleanup failed in SVN

One approach would be to: Copy edited items to another location. Delete the folder containing the problem path. Update the containing folder through Subversion. Copy your files back or merge changes as needed. Commit Another option would be to delete the top level folder and check out again. Hopefully it doesn’t come to that though.