Git merge with force overwrite
Not really related to this answer, but I’d ditch git pull, which just runs git fetch followed by git merge. You are doing three merges, which is going to make your Git run three fetch operations, when one fetch is all you will need. Hence: Controlling the trickiest merge The most interesting part here is git merge -X theirs. As root545 … Read more