How to delete files from SVN that have already been deleted from the FS?
svn, tortoisesvn
Solution
You have to use "Tortoise svn -> delete" to delete the file.
If you have deleted directly by mistake, do an svn update to get the file back and then do "tortoise svn->delete"
:-)
Problem
Using TortoiseSVN on Windows, how do I delete files from the repository that have already been deleted on the file system? I would expect them to show up as "missing" or "deleted" on my next commit, but that doesn't seem to be the case. On Linux/Mac, I just run this command: ``` svn st | grep ^! | cut -b7- | xargs svn delete ``` -Chris