how to go to my branch in git when cloning the master code example
Example 1: clone a particular branch
git clone -b <branch> <remote_repo>
Example 2: clone a branch
git clone --single-branch --branch <branchname> <remote-repo>
git clone -b <branch> <remote_repo>
git clone --single-branch --branch <branchname> <remote-repo>