Git Cheat Sheet =============== There are other more complete git tutorial out there, but the following should help you during this workshop. Clone a repo ------------ :: git clone Create a new branch, and switch to it ------------------------------------- :: git checkout -b Switching to an existing branch ------------------------------- :: git checkout Adding files to be committed ---------------------------- :: git add Commit your changes ------------------- :: git commit -m "" Pushing changes to remote ------------------------- :: git push Rebase with a branch on remote ------------------------------ :: git rebase /