git pull --help

Incorporates changes from a remote repository into the current branch.

I pull the git repository for offline view of the code and like to have the updated code for the different branches. How do I pull the code for all the branches easily without doing a pull for each branch manually?

--all -- Fetch all remotes.

--all didn't help.

link|improve this question

67% accept rate
stackoverflow.com/questions/4318161/… should help – VonC Sep 27 '11 at 7:53
feedback

3 Answers

up vote 1 down vote accepted

If the local repository is used for read only and none of the files are modified, then the below script will do the trick.

for i in git branch | sed 's/^.//'; do git checkout $i ; git pull; done

There seems to be no git equivalent command for the same.

link|improve this answer
feedback

pull merges remote branches into your current local branch, so pulling all remote branches is probably not what you want.

link|improve this answer
feedback

You have to merge each branch individually. If you merged in multiple branches and more than one of them had merge conflicts, how could you possibly resolve then at the same time?

link|improve this answer
Gareth - as I mentioned I use git for offline view only and there won't any conflicts. A git command or shell script might suffice my requirements. – Praveen Sripati Sep 27 '11 at 9:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.