Answers for "how do i clone a specific branch in git"

31

clone specific branch

git clone --single-branch --branch <branchname> <remote-repo>
Posted by: Guest on April-02-2020
3

how do i clone a specific branch in git

git clone -b <your_branchname> <your_git-remote-repo>
Posted by: Guest on June-26-2020
4

gitlab clone branch

git clone --single-branch --branch <branchname> <remote-repo>
Posted by: Guest on June-18-2020

Code answers related to "how do i clone a specific branch in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language