git change branch

Shell
$ git checkout <existing_branch>

$ git checkout -b <new_branch>[git checkout "branch_name"]

is another way to say:

[git checkout -b branch_name origin/branch_name]

in case "branch_name" exists only remotely.

[git checkout -b branch_name origin/branch_name] is useful in case you have multiple remotes.

Regarding [git checkout origin 'another_branch'] I'm not sure this is possible, AFAK you can do this using "fetch" command -- [git fetch origin 'another_branch']$ git branch$ git checkout feature$ git switch <existing_branch>

$ git switch -c <non_existing_branch>$ git branch iss53
$ git checkout iss53
Source

Also in Shell: