git checkout command

The git checkout command is used to switch branches and check content out into your working directory.
To create a non-existing branch, run,
```
git checkout -b myBranch
```
To create a branch based on another branch, run,
```
git checkout -b myBranch baseBranch
```