how to branch off from a different branch and clone all the datta code example
Example 1: clone specific branch
git clone --single-branch --branch <branchname> <remote-repo>
Example 2: clone a particular branch
git clone -b <branch> <remote_repo>