Created
November 8, 2011 01:48
-
-
Save jessecravens/1346784 to your computer and use it in GitHub Desktop.
Git Cheatsheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment