Answers for "checkout remote develop branch"

2

Git - checkout a specific remote branch

$ git checkout -t origin/remote-branch

Branch 'remote-branch' set up to track remote branch 'remote-branch' from 'origin'.
Switched to a new branch 'remote-branch'
Posted by: Guest on April-23-2022
4

checkout remote branch

git fetch origin 

git checkout –track origin/xyz
Posted by: Guest on April-23-2020

Code answers related to "checkout remote develop branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language