I'm working with a git repo that has an empty master and multiple branches. When I do a git pull, it only seems to pull stuff down for the master but does not apply for the branches.
I find myself having to do git checkout branch; git pull
for each branch before I can push. Is there a command or switch I can use that does
Pull and apply changes to all branches and master?