-1

I wish to use only the git tool and not any other tools to do this. I am looking for a shell script or even it is a inbuilt git sub command which can update all of my local branches by pulling changes from the origin master. So that I can simply run the script or the sub command to get this done. Please help.

Mehant Kammakomati
  • 852
  • 1
  • 8
  • 25
  • 1
    look at this [question](https://stackoverflow.com/questions/4318161/can-git-pull-all-update-all-my-local-branches) – SwissCodeMen May 31 '20 at 09:21

1 Answers1

0

you can use git pull --all to update all your local branches.

Arki99
  • 256
  • 1
  • 4
  • 11