SVN commit error after deleting files locally

前端 未结 4 979
予麋鹿
予麋鹿 2021-01-31 01:33

I have a project that I am building with Netbeans 6.1 and I am using SVN. I deleted some files on the local machine then attempted to commit my changes to th SVN repository. The

4条回答
  •  长发绾君心
    2021-01-31 02:03

    An svn update will bring the file back, fixing your local repo.

    You should then be able to do an "svn delete" on the file, which tells your local repo that the file is to be deleted, and also deletes it from the file system.

    You should then be able to commit the changes back to the repo.

提交回复
热议问题