switch the git branch code example
Example 1: canging branch in git
$ git checkout feature
Example 2: sitch a branch command line
$ git switch <existing_branch>
$ git switch -c <non_existing_branch>
$ git checkout feature
$ git switch <existing_branch>
$ git switch -c <non_existing_branch>