TortoiseSVN revert to a previous version

1

Tanho a code and I'm using the Tortoise version control. I started from version 1 and now I'm in version 10. But I realized that I have a problem and need to return my code for revision 6.

I go on the properties and request to revert to such a review. So good.

But from that point, I'd like to use that point in the code to continue programming. Call this review 6 out of 11 and continue from it. But when I try to commit I get an error message, that my code version is not updated and I need to update it first (ie upgrade to version 10). But what I want is just not updating it, not to use the parts I want to discard.

How do I send the new version of the code to the server?

Thank you

    
asked by anonymous 18.03.2015 / 16:16

1 answer

1
  • Make a branch of this version 6. Give it an easy name to identify;
  • Make your changes to the branch , commit ;
  • If you wish, go back to trunk and merge from branch .

    You may need some more manual modifications and conflict resolutions.

        
  • 18.03.2015 / 16:51