Commit failed with error SVN:"xxx.x" is scheduled for addition, but is missing

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hxl517116279/article/details/78610848
删除文件夹后点commit提交,但是报错,报错内容如下:

提示 "Commit failed with error
0 files committed, 3338 files failed to commit: 111 svn: E155010: Commit failed (details follow): svn: E155010: 'F:\..\..\xx.xx' is scheduled for addition, but is missing"


原因:之前用SVN提交过的文件,被标记为"add"状态,等待被加入到仓库。若此时你把这个文件删除了,SVN提交的时候还是会尝试提交这个文件,虽然它的状态已经是 "missing"了。


解决办法:在AndroidStudio中,选中那个文件的上一级目录,右键选择Subversion,点击Revert。这样就告诉SVN把这个文件退回到之前的状态 "unversioned",也就是不对这个文件做任何修改,然后再提交就可以了

猜你喜欢

转载自blog.csdn.net/hxl517116279/article/details/78610848
今日推荐