【SVN】总结(1):svn常见问题(2016-01-06)

1、svn在commit后报错:is scheduled for addition, but is missing
[root@jidong-fileserver ~]# svn ci ''
svn: Commit failed (details follow):
svn: '/root/script/test/mkdir_ip.sh' is scheduled for addition, but is missing

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

解决:在命令行下用 "svn revert xxx.c --depth infinity",在图形界面下,右键--Revert,选中那个文件。这样就告诉SVN把这个文件退回到之前的状态 "unversioned",也就是不对这个文件做任何修改。


2、svn在commit提交后报错:Could not use external editor to fetch log message
[root@jidong-fileserver ~]# svn ci ''
svn: Commit failed (details follow):
svn: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options
svn: None of the environment variables SVN_EDITOR, VISUAL or EDITOR are set, and no 'editor-cmd' run-time configuration option was found

原因:在svn ci是没有带参数,-m或者-f

解决:[root@jidong-fileserver ~]# svn ci -m ''

上一篇:C#-封装(七)


下一篇:angular源码分析:angular中脏活累活承担者之$parse