Crap. I have two working copies of a subversion repository, one of the trunk, and one of a branch I created. Then, I accidentally the deleted the branch in a repository browser. How do I restore the branch? Is there a way to undo the most recent commit for the whole repository? Any help is much appreciated. :-\
|
|
svn cp [path to deleted branch]@[revision before delete] [new path] for example:
Where 1993 is the revision before the delete... Here is some good documentation... There must be some way of escaping the @ symbol in the username... |
||||||||||
|
|
|
Assuming your last revision was 108
You can also add your source URL to the merge: Edit: Elsewhere on StackOverflow: http://stackoverflow.com/questions/248821/undoing-a-commit-in-tortoisesvn |
||||||
|
|
|
Hmm... you would have to create another branch off the revision of the original branch just prior to having been deleted. Then physically copy any changes in your orphan working copy to the newly-created branch. I'm afraid there's no such thing as "undoing" anything in Subversion. |
||||||||
|
