Subversion - Always resolve conflicts using mine for a set of files

ぐ巨炮叔叔 提交于 2019-11-30 07:08:12
Avi

You should probably avoid having generated files in SVN in the first place - as you can tell, this is a source of conflicts. Better to have them be ignored, and build them as part of the build.

But as to your question, you should be able to use the --accept mine-full option to svn update, which makes conflicts automatically resolve to mine. See the Subversion manual and man pages for more details.

svn update --accept [postpone|base|mine-full|theirs-full|edit|launch]

That should be

svn resolve --accept [postpone|base|mine-full|theirs-full|edit|launch]

No?

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!