I'm working on branch MyFeature, which was created based on branch Develop.
From what I understand, there are (at least) 3 ways to merge Develop back to MyFeature, when I'm checked out on MyFeature:
a. checkout Develop, pull, checkout MyFeature, merge from Develop
b. git fetch, merge from origin/Develop
c. git pull from origin/Develop
I don't like method a (the one I used most before I switched to using method b) cause it's too long and confusing.
Will all these methods produce the same result?
Thanks!