NguyenTrungTin
5/14/2018 - 10:08 AM

Git - Replace master branch, entirely, from development branch.md

Git - Replace master branch, entirely, from development branch

  1. You should be able to use the "ours" merge strategy to overwrite master with seotweaks like this:

git checkout development
git merge -s ours master
git checkout master
git merge development

  1. The result should be your master is now essentially seotweaks.

(-s ours is short for --strategy=ours)