I have git setup with an xcode project. Inside that project is a .storyboard file which is a very long xml file.
This file causes many conflicts when merging, because when updating the layout all views can get a minor change in their position or size by sometimes only 1px.
I have some branches in my git.
When Im on my master branch and want to merge master with my Test branch i get around 30 conflicts in that particular file.
Because it looks like this when there is a conflict:
>>>>>> HEAD
<Some stuff />
======
<Some stufff />
>>>>>> Test
Is it possible to remove all the conflicts from HEAD or the branch I merged with?