DEV Community

Jaweher Ben Salah
Jaweher Ben Salah

Posted on

Answer: `git fetch` a remote branch

fetch the branch locally:

git fetch origin <branchName>

move to that branch:

git checkout <branchName>

Top comments (0)