Answers for "how to make a remote branch track another branch"

3

create local branch to track remote

git checkout --track origin/some_remote_branch
Posted by: Guest on August-04-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 "how to make a remote branch track another branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language