25 February 2013

Replacing master with a branch GIT



This will help us to overwrite the master branch with a new branch incase the new branch is in a better state than the master


  • git checkout seotweaks
  • git merge -s ours master
  • git checkout master
  • git merge seotweaks



Thanks