Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deleted files are 'restored' when doing an update with TortoiseSVN

If I delete a file from my working copy, then do an Update, the deleted file is restored.

This is quite annoying, because I then have to go find the file and delete it again.

I'm not sure why SVN does this. If I want to do an Update, it means I want to pull down any changes from the respository. It doesn't mean I want to restore files that I have deleted.

Is there a workaround?

like image 778
cbp Avatar asked May 03 '11 06:05

cbp


People also ask

What is TortoiseSVN update?

If you want more control over the update process, you should use TortoiseSVN → Update to Revision... instead. This allows you to update your working copy to a specific revision, not only to the most recent one.

How do I recover a deleted folder from SVN?

In the Repository Browser, click the button labeled HEAD (at the top-right corner) to show to a revision there your folder still exists, then right-click that folder and select "Copy to..." and enter the path there you want the folder to be re-created (probably the same path that is already in the text box).

How do I delete my TortoiseSVN account?

How do I uninstall TortoiseSVN? Simply uninstall from Add/Remove Programs in the Windows control panel. This does not affect your repositories or working copies at all.


2 Answers

If you want to delete the file from SVN, you need to do an SVN delete, not just delete the file locally. SVN delete is in the TortoiseSVN context submenu.

like image 98
blueshift Avatar answered Sep 23 '22 09:09

blueshift


To mitigate after the problem occurs, i do this:

  1. Select all the rows in tortoise svn window that were 'Restored', and copy
  2. Paste in second column of a new excel sheet
  3. in first column, type: del "
  4. fill the column with del " next to the restored files' paths, by double clicking bottom right corner of the first cell in which you typed del "
  5. fill after each path with a closing "
  6. Win+R (Start -> Run) notepad -> Enter. Copy all and paste into notepad. Select and copy one tab, Ctrl + H, replace all, replaces tabs with nothing to remove tabs
  7. Win+R cmd -> Enter , right click and paste the delete commands in command line, press enter and the files get deleted

I know these are a long list of instructions, but I believe they should be second nature to developers, and are necessary to know and go about quickly, for multiple purposes beyond this one, using excel this way, creating and running batch commands quickly, etc...

like image 26
Gabriel Avatar answered Sep 23 '22 09:09

Gabriel