Can I turn off automatic merging in Subversion?

后端 未结 5 883
不思量自难忘°
不思量自难忘° 2021-02-07 04:37

We\'re looking at moving from a check-out/edit/check-in style of version control system to Subversion, and during the evaluation we discovered that when you perform an Update ac

5条回答
  •  情歌与酒
    2021-02-07 05:16

    Here is a trick for TortoiseSVN:

    How to turn off “auto-merge” in Subversion

    Trick for svn.exe is to set svn external diff tool to a program that will constantly fail.

    svn --diff-cmd=/bin/false
    

    If external diff program fails, svn concludes that conflict is unresolvable and wouldn't merge it.

提交回复
热议问题