I have my master
branch and a develop
branch for working on a few changes. I need to merge changes from master
into develop
, but will eventually merge everything from develop
into master
. I have two different workflows in mind:
git pull origin master
into develop
branchgit merge master
into develop
branchWhich is the best way to do this, and why?
This workflow works best for me:
git checkout -b develop
...make some changes...
...notice master has been updated...
...commit changes to develop...
git checkout master
git pull
...bring those changes back into develop...
git checkout develop
git rebase master
...make some more changes...
...commit them to develop...
...merge them into master...
git checkout master
git pull
git merge develop