Специфическая ветвь клона
git clone --single-branch --branch <branchname> <remote-repo>
Concerned Crane
git clone --single-branch --branch <branchname> <remote-repo>
In general:
git clone -b <branch> <remote_repo>
Example:
git clone -b develop git@github.com:user/myproject.git
git clone -b <branchName> <remote_repo_url>
git clone -b branchName repoUrl
clone specefic branch in git
git clone --single-branch --branch <branchname> <remote-repo>
clone specefic branch in git
git clone --single-branch --branch <branchname> <remote-repo>