标签:
提示 "svn: Commit failed
(details follow): svn: ‘/***/xxx.c‘ is scheduled for addition, but is missing "
原因:之前用SVN提交过的文件。被标记为"add"状态。等待被增加到仓库。若此时你把这个文件删除了,SVN提交的时候还是会尝试提交这个文件,尽管它的状态已经是 "missing"了。
解决:在使用命令行 "svn revert xxx.c --depth infinity",在图形界面。对--Revert,选择文件。这告诉SVN本文档回到以前的状态 "unversioned"。这是不正确的,无论做什么更改文件
SVN: is scheduled for addition, but is missing
标签:
原文地址:http://www.cnblogs.com/gcczhongduan/p/5031148.html