There are other more complete git tutorials out there, but the following should help you during this workshop.
git clone <url>
git checkout -b <branchname>
git checkout <branchname>
git add <filename>
git commit -m "<commit message>"
git push <remote> <branchname>
git rebase <remote>/<branchname>
For more instructions, please consult with the Flight rules for Git.