git go to branch code example
Example 1: create and go to branch
git checkout -b <branch_name>
Example 2: canging branch in git
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
Example 3: git switch branch
git switch <branch_name>
git checkout <branch_name>
Example 4: canging branch in git
$ git checkout feature
Example 5: github go to a branch
git checkout <name>