In this case, you need to perform a git merge.
A Git merge combines the histories of two branches, ensuring that the updates from the master are reflected in your other branches.
In your case, using Git merge, you will be able to integrate changes from the master branch into your other branches (b1, b2, b3).
Steps:
git checkout b1
git merge master
If there are conflicts, resolve them, then commit the changes.
Switch to branch b2, merge master, and resolve conflicts.
Do the same for other branches