[[Git command]] that switches you to a different branch of the project. ```sh git checkout -b <branch> # create and switch to a new branch ``` ^create-branch ```sh git checkout <branch> # switch to an existing branch ``` ^switch-branch