解决svn update 产生Node remains in conflict的问题

[root@localhost svnrepos]# svn up .
Updating '.':
Skipped 'pythonresource.txt' -- Node remains in conflict
At revision 14.
Summary of conflicts:
Skipped paths: 1python

解决办法是:
[root@localhost svnrepos]svn revert --depth=infinity pythonresource.txt 
Reverted 'pythonresource.txt'
[root@localhost svnrepos] svn up .
Reverted 'pythonresource.txt'web

再次在本地编辑pythonresource.txt,commit后,到web服务器里,svn up pythonresource.txt ,一切正常。服务器

或者在本地copy pythonresource.txt到其余目录,commit ,而后copy pythonresource.txt 到原来的目录,再次commit 后。在http服务器就不会报错了。svn

 

若是仍是不能够,出绝招:ip

svn remove --force filename
svn resolve --accept=working  filename
svn up
相关文章
相关标签/搜索