switch branch terminal git code example
Example 1: canging branch in git
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
Example 2: how to switch branches in git
git checkout [branch name]
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
git checkout [branch name]