how to switch branches git pull code example
Example 1: canging branch in git
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
Example 2: git change branch
$ git branch iss53
$ git checkout iss53
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
$ git branch iss53
$ git checkout iss53