Answers for "how to clone a specific branch from github that you are not working"

31

clone specific branch

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

clone a given branch github

git clone --single-branch --branch <branch> <repository>
Posted by: Guest on April-28-2020
1

how to clone a specific branch from github that you are not working

git clone -b <branch> <remote_repo>
Posted by: Guest on June-18-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 to clone a specific branch from github that you are not working"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language