how to go to branch in git code example
Example 1: create and go to branch
git checkout -b <branch_name>
Example 2: git switch branch
git switch <branch_name>
git checkout <branch_name>
Example 3: github go to a branch
git checkout <name>
Example 4: git change branch
$ git branch iss53
$ git checkout iss53