0

I am getting ready to do some work remote from my job but I have a git question. If I go into my project and I do a

git pull

does this take down all the branches from the server or just the current one?? I think just the current one.. I need all my branches updated..

SJS
  • 5,607
  • 19
  • 78
  • 105

1 Answers1

4
$ git pull --all

Will pull all remote branches, if you already have local branches which need updating you might consider using

$ git fetch --all
Oliver Atkinson
  • 7,970
  • 32
  • 43