how to get particular branch from git code example
Example 1: clone a particular branch
git clone -b <branch> <remote_repo>
Example 2: clone a branch
git clone --single-branch --branch <branchname> <remote-repo>
git clone -b <branch> <remote_repo>
git clone --single-branch --branch <branchname> <remote-repo>