Last Updated: February 25, 2016
·
389
· jaiversin

Git remotes branch fetching

Whenever you need to get a branch from the remote Git repo, you have to fetch it first, then, jump to it:

git fetch remote remote_branch:local_branch 
git checkout local_branch