Skip to content

Instantly share code, notes, and snippets.

@jessecravens
jessecravens / Git Cheatsheet
Created November 8, 2011 01:48
Git Cheatsheet
Git First-Time System Setup
After installing Git, you should perform a set of one-time setup steps. These are system setups, meaning you only have to do them once per computer:
$ sudo apt-get install git-core
$ git config --global user.email youremail[at symbol]example.com
$ git config --global user.name "John Doe"
$ git config --global user.name "Your Name"
$ git config --global alias.co checkout