Reputation: 191
I added few files to svn repository. But before I do commit, I deleted some of the pdf files. Now when I do a svn commit it syas ".pdf' is scheduled for addition, but is missing ". Please let me know is there a way to come out of this problem?
Upvotes: 1
Views: 133
Reputation: 255115
When you delete a file from repository - you need to explicitly specify that to svn. So perform
svn del filename
where filename
is the path to the file that you has deleted already (the one which is missing)
Upvotes: 3