how to clone a project from github from a specific branch code example
Example 1: git clone from specific branch command
git clone -b <branch> <remote_repo>
Example 2: gitlab clone branch
git clone --single-branch --branch <branchname> <remote-repo>