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