user679460
user679460

Reputation: 191

Svn: added files but deleted few before committing: not able to commit now

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

Answers (1)

zerkms
zerkms

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

Related Questions