I am working on a 3 branch project.
I am on branch1, and there is master branch.
When I need to pull and merge something from master:
git checkout master
git pull origin master
git checkout branch1
git merge master
is there a way to pull the master changes from my branch so I don't have the needed to do merge ?
something like:
git pull origin master
but from branch1 without switching to master branch.
EDIT
Resume:
I have 3 branches: every time there is something new in master, I don't want to switch to branch master. All I want is to pull the master new features into my branch, without going to the master branch.