Reputation: 111
Suppose I have trunk with revisions from 1 to 20. I remove code from revisions 15 to 20 from trunk using reversed merge. Now, in trunk, I have code until revision 14.
If I need to bring back revision 18 to trunk, how do I do that?
Upvotes: 0
Views: 53
Reputation: 8905
While you may be able to get a merge working in some way or another, the sure-fire way is to create a patch from the revision you want to restore, and apply that patch to the HEAD of your repository.
Upvotes: 3