git switch in remote branch code example
Example 1: canging branch in git
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
Example 2: git get remote branch
git fetch
git checkout test
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
git fetch
git checkout test