I have some changes commited a few commits back in my svn repository. Let's say HEAD is at r750 and I want to revert r745 without losing r746-r750. Is this possible?

And, can I somehow save r745 and reapply it later (as a new revision)?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Supposing you get a clean backwards merge, you could do this...

svn merge -r 745:744 <source>

Then when you want to re-apply it, you could forward merge it back in:

svn merge --ignore-ancestry -r 744:745 <source>

For more info, check out the "Common Use-Cases for Merging."

link|improve this answer
feedback

Yes, this is definitely possible.

When you revert a change, it still creates a new revision in the repository. So you would do something like this:

1) Check out current copy r750.

2) Specify a revert on the working copy using svn merge -r. Your working copy will have the old version merged in.

3) Check in the working copy as r751.

Now you'll have two revisions in the history. The new one (r751) which does not include r745, since you rolled it back. But r745 will still be there if you ever want to reapply it. You can simply check out a copy of r745, merge it into your working copy, and check it back in (say as r752).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.