git a specific branch code example
Example 1: git clone from specific branch
git clone -b branchName repoUrl
Example 2: how do i clone a specific branch in git
git clone -b <your_branchname> <your_git-remote-repo>
git clone -b branchName repoUrl
git clone -b <your_branchname> <your_git-remote-repo>