且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

本地删除文件后SVN提交错误

更新时间:2023-11-22 18:36:46

svn更新会将文件带回,从而修复了本地存储库.

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

然后,您应该可以在文件上进行"svn删除",这告诉您的本地存储库要删除该文件,并且还可以从文件系统中删除该文件.

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.