github clone a specific branch to new repository code example
Example 1: clone from a specific branch
git clone -b <branchName> <remote_repo_url>
Example 2: git clone from specific branch command
git clone -b <branch> <remote_repo>
git clone -b <branchName> <remote_repo_url>
git clone -b <branch> <remote_repo>