Remove file from SVN repository without deleting local copy

SvnTortoisesvn

Svn Problem Overview


How can I "delete" a file which is already in the SVN repository without deleting it from my file system?

TortoiseSVN or command line instructions are welcome.

The following works, but I am hoping for something nicer:

  1. Copy the file to some other location outside the repository.
  2. SVN Delete the file.
  3. Commit
  4. Copy the files back and make sure to ignore them on future commits.

Svn Solutions


Solution 1 - Svn

svn delete --keep-local the_file

Solution 2 - Svn

http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-rename.html#tsvn-dug-rename-delete">Deleting files and folders

> If you want to delete an item from the repository, but keep it locally as an unversioned file/folder, use Extended Context Menu → Delete (keep local). You have to hold the Shift key while right clicking on the item in the explorer list pane (right pane) in order to see this in the extended context menu.

Delete completely:
right mouse click → Menu → Delete

Delete & Keep local:
Shift + right mouse click → Menu → Delete

Solution 3 - Svn

In TortoiseSVN, you can also Shift + right-click to get a menu that includes "Delete (keep local)".

Solution 4 - Svn

Rename your file, commit the changes including the "deleted" file, and don't include the new (renamed) file.

Rename your file back.

Solution 5 - Svn

When you want to remove one xxx.java file from SVN:

  1. Go to workspace path where the file is located.
  2. Delete that file from the folder (xxx.java)
  3. Right click and commit, then a window will open.
  4. Select the file you deleted (xxx.java) from the folder, and again right click and delete.. it will remove the file from SVN.

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
QuestionsrmarkView Question on Stackoverflow
Solution 1 - SvnphihagView Answer on Stackoverflow
Solution 2 - SvncrashmstrView Answer on Stackoverflow
Solution 3 - SvnharpoView Answer on Stackoverflow
Solution 4 - SvnAvramView Answer on Stackoverflow
Solution 5 - SvnpavanView Answer on Stackoverflow