How to undo tortoisesvn update

I am trying to restore a working copy of a file before upgrading to a new version. The problem is that the turtle messed up things and now the code life is incompatible.

I tried to update the previous version, but I had so many conflicts that I can’t fix it, since SVn literally combined all the text.

Does Tortoise create an SVN file locally before performing the upgrade and where can I find the file. I tried searching in .svn \ prestine, but I could only find the old version of my code.

Someone can help.

+4
source share
1 answer

Unfortunately, there is no way to do this. You were unlucky.

How I decided to use git as a client of subversion. Git is significantly different from subversion, and interacting with subversion adds some limitations inherent in it, but gives you better protection against job loss for merging conflicts.

In addition, it maintains individual changes separately and saves the local change stack, which I often use if I find an error during some larger task and want to push it in the body while the main work is still in progress or if I want to divide the work into logical parts that are easier to verify.

+1
source

Source: https://habr.com/ru/post/1439630/


All Articles