how to go into a branch in git 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: switching git branch in gitbash
Switch over to the branch "issue1" when you want to add new commits to it.
Use the checkout command to switch branch.
$ git checkout <branch>