Back to revision in Subversion

SvnVersion Control

Svn Problem Overview


suppose you update your code to revision 10 which is broken. You want to go back to revision 9, work on the code and wait until someone will fix the build:

svn merge -rHEAD:9 .

But it won't work, why?

Svn Solutions


Solution 1 - Svn

If you simply want to go back to an other revision, update is what you are looking for:

svn update -r 9

You can work on the code but you can't commit changes. Well, if revision 10 didn't change the same file you changed, you could commit but it's better if you wait for revision 10 to be fixed.

Instead, if you want to go ahead and work on the code, you might consider to create a branch from revision 9, go ahead in the branch and reintegrate the branch into trunk when revision 10 is fixed.

Solution 2 - Svn

If you really don't want to revert using the merge command, you could always just check out a previous version by passing the -r option to checkout.

svn checkout http://yoursite/svn -r 9

When someone fixes revision 10 and commits 11, you can update normally and merge in your changes from your local copy of r9. Just resolve conflicts normally and then commit 12.

Solution 3 - Svn

Your best bet is to create a branch from revision 9 and continue working on that branch. When you are confident that the trunk is ready for your changes (i.e. it is fixed), merge your branch back in.

Solution 4 - Svn

svn update -r version-number, this method work fine for me, as i had to go back. but remeber to commit to changes to make sure. ok

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionEtamView Question on Stackoverflow
Solution 1 - SvnSimone CarlettiView Answer on Stackoverflow
Solution 2 - SvnZachary MurrayView Answer on Stackoverflow
Solution 3 - SvnAdam BatkinView Answer on Stackoverflow
Solution 4 - Svnuser3228022View Answer on Stackoverflow