tortoise svn always merging 45 extra files

前端 未结 4 1791
伪装坚强ぢ
伪装坚强ぢ 2020-12-29 07:36

When we do our branching and merging with svn, we always have the same thing happen.

We get a latest copy of the trunk.

Create a branch and switch.

4条回答
  •  借酒劲吻你
    2020-12-29 08:13

    They're probably mergeinfo properties. With version 1.5 of SVN, it was quite aggressive with setting the mergeinfo property, and as you merge, those properties get updated - requiring a commit to them.

    The answer is to delete the mergeinfo property from them. Also upgrade to version 1.6 which has better mergeinfo support (i.e. it writes less of these properties).

    I should say that these file will have no visible changes if you look at the differences. Obviously, if their contents are changed, then what the changes are may give you a clue (e.g. is an automated tool writing extra comments, modifying the layout or adding lines to the top or bottom).


    EDIT: See this blog post for more information on SVN merging issues, and fixes.

提交回复
热议问题