How to 'git pull --rebase' for all Git branches?
I need to make git bundle frequently with latest source hence, I run git pull --rebase
for each branch manually. When I run git pull --rebase --all
I see for current active branch rebased is done but for other branch I see "head is some # commit ahead" this type of message. Is there any git tool running which will result like running git pull --rebase
after switching each branch manually?