Is it possible to merge other branch into another branch?
For example, I'm in branch1 and want to pull remote/develop into develop branch and then merge develop into current branch1.
What am I doing is checkout develop(maybe stash first), pull, checkout branch1 and then merge develop.
Is it possible to do all these with switch to develop branch ?