vloning a particular branch from git 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>
git clone -b <branch> <remote_repo>
git clone --single-branch --branch <branchname> <remote-repo>