Créer une branche locale pour suivre la télécommande
git checkout --track origin/some_remote_branch
PeeBee!
git checkout --track origin/some_remote_branch
git branch --set-upstream-to=origin/branch
git branch -r
git fetch origin
git checkout --track origin/<branch_name>
# Set upstream when pushing to remote
git push -u origin topic
# Set upstream without pushing it
# with option -u / --set-upstream-to
git branch -u origin/topic
git branch --set-upstream-to=origin/topic
$ git checkout --track origin/dev
Branch dev set up to track remote branch dev from origin.
Switched to a new branch 'dev'