Answers for "pull git branch from remote without creating"

2

how to pull a new remote branch

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

pull branch from remote to new local branch

git branch --track <branch-name> origin/<branch-name>
Posted by: Guest on July-06-2021

Code answers related to "pull git branch from remote without creating"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language