Answers for "fetch from remote branch"

10

pull remote branches

git fetch origin
git checkout --track origin/<remote_branch_name>
Posted by: Guest on May-25-2020
7

git fetch remote branch

git checkout --track origin/branch_name
Posted by: Guest on April-24-2020
1

how to pull a new remote branch

git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>
Posted by: Guest on May-29-2020
1

fetch from remote branch

git switch daves_branch
Posted by: Guest on April-07-2021

Code answers related to "fetch from remote branch"

Browse Popular Code Answers by Language