Differences between svn merge left, right & working files after conflicts

前端 未结 5 1503
忘了有多久
忘了有多久 2020-12-23 11:25

When performing a \'svn merge\' from my development team\'s trunk into a branch, we occasionally experience merge conflicts that produce files with suffix names: *.mer

5条回答
  •  萌比男神i
    2020-12-23 12:06

    You performed 3-side merge diring conflict-resolving (when merging 2 different files). It this operation 3 sources used

    • "your" file (from WC or source-location, depending on parameters)
    • "their" file (file with with changes must be merged)
    • "base" file (common ancestor of files 1-2)

    r*** extension just added to the same filename in order to have 3 files on merge

    After successful merging and marking conflict as resolved temp-files must disappear automagically, if my memory served me well

提交回复
热议问题