This is Exercise 1
git branch <name>: create a branch in your current HEAD locationgit switch <name>: switch to the branchgit switch -c <name>: create and switch to it in one go, from HEAD
when you push the branch to github, it will automatically update the PR
git branch -d <name>: will delete the branch