Skip to content

Instantly share code, notes, and snippets.

@hashg
hashg / git.merge.md
Created December 2, 2019 18:49
How to get changes from another branch
  • go to the master branch our-team

git checkout our-team

  • pull all the new changes from our-team branch

git pull

  • go to your branch featurex

git checkout featurex

  • merge the changes of our-team branch into featurex branch