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 masterintodevelopbranchgit merge masterintodevelopbranch
Which is the best way to do this, and why?