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
intodevelop
branchgit merge master
intodevelop
branch
Which is the best way to do this, and why?
git pull
=git fetch
+git merge FETCH_HEAD
– Jewess