SVN:Working copy text base is corrupt

提交Makefile时遇到了如下的提示:

Working copy text base is corrupt

尝试了

svn revert Makefile

然后再svn ci还是这个corrupt的提示。
最后解决的方法是:
1.先备份一下要提交的文件;
2.svn revert Makefile;
3.svn del Makefile;
4.svn ci Makefile -m “暂时删除”
5.svn add Makefile
6.svn ci Makefile -m “重新添加”

猜你喜欢

转载自blog.csdn.net/k7arm/article/details/86693078