Skip to main content

How can I track all remote Git branches?

08 Sep 2013 - git

First, get a list of all remote branches:

git branch -r

Then, check out each of remote branch:

git checkout -t origin/branch1

References