how to clone a goit branch code example
Example 1: git clone from specific branch
git clone -b branchName repoUrl
Example 2: clone a particular branch
git clone -b <branch> <remote_repo>
git clone -b branchName repoUrl
git clone -b <branch> <remote_repo>