Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Git Cheatsheet

Trevor Rosen edited this page Dec 4, 2018 · 3 revisions

You won't need many Git commands for this workshop, but if you're unfamiliar with this most excellent SCM tool, we've added the most important ones for these lessons below:

List branches

git branch

Check out an existing branch

git checkout BRANCH_NAME

Abandon changes/revert to last commit

git reset --hard

Clone this wiki locally