Reputation: 5667
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..
Upvotes: 0
Views: 51
Reputation: 8029
$ git pull --all
Will pull all remote branches, if you already have local branches which need updating you might consider using
$ git fetch --all
Upvotes: 4