Reputation: 7303
When I open the commit dialog in tortoise svn, I can see that a lot of files are either missing or deleted, but I have them on disk.
What is the difference between missing and deleted?
How are they either missing or deleted if I have them?
(svn status does not report those files)
Upvotes: 6
Views: 11624
Reputation: 43575
missing: means the file is actually missing in your working copy. This happens if you delete the file without using the svn command. You can restore the missing file by updating the working copy or using the revert command.
deleted: the file is deleted in svn, i.e. it is marked for deletion on the next commit. This status is shown even if the file itself is still in your working copy. If it's still in the working copy, it will be removed on the next commit. And the next commit will also remove the file from the repository.
Upvotes: 4
Reputation: 13327
Upvotes: 4