how to switch another branch in git

C++
$ git checkout <existing_branch>

$ git checkout -b <new_branch>git switch <branch_name>

git checkout <branch_name> git checkout 'another_branch'
$ git branch iss53
$ git checkout iss53
Source

Also in C++: