How to clone branch of git repo code example
Example 1: how do i clone a specific branch in git
git clone -b <your_branchname> <your_git-remote-repo>
Example 2: git clone single branch
# clone only the remote primary HEAD (default: origin/master)
git clone <url> --single-branch
# as in:
git clone <url> --branch <branch> --single-branch [<folder>]