Resolve conflicts while merging branches
When conflicts happen while merging, git will add for you something like that in each problematic file : [code language="bash"] <<<<<<< HEAD text that is in the HEAD branch ======= text that is in the dev branch >>>>>>> dev [/code] To resolve the conflicts, simply remove the text that you...