Git Cheat Sheet =============== There are other more complete git tutorials 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 / Extras ------ For more instructions, please consult with the `Flight rules for Git`_. .. _`Flight rules for Git`: https://github.com/k88hudson/git-flight-rules