git switch origin of branch code example
Example 1: canging branch in git
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
Example 2: git switch branch to another branch
git checkout <name>
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
git checkout <name>