In the case your changes checked in to the master branch. Thus you will need to merge in one go all the other branches b1,b2,b3. It is shown below how that would be done:
Switch to each of the other branches.
Start with b1: repeat everything after this sentence for each branch.
code:
git checkout b1
Merge master to into the branch: The changed are pulled from the master to b1
Code:
git merge master
That is, in case it doesn't have any conflicts, Git will merge changes from master to b1.
If it has conflicts, then solve conflict and commit as well as add changes with git add and git commit -m “your message”
Repeat the same for other branches: Repeat above commands for b2 and b3.
This will sync every one of the branches you've made (b1, b2, b3) with the master and all its latest updates. The more branches you create from here on out, these steps will update them to be in sync with the master as well.