Last active
February 2, 2016 16:45
-
-
Save benhoIIand/4596493 to your computer and use it in GitHub Desktop.
Git Setup
This file contains hidden or 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
| [user] | |
| name = YOUR NAME | |
| email = YOUR EMAIL | |
| [core] | |
| # see the other file in this gist | |
| excludesfile = /Users/USERNAME/.gitignore | |
| [color] | |
| # colors all up in your git | |
| ui = 1 | |
| [alias] | |
| ac = !git add -A && git commit -m | |
| cl = clone | |
| ci = commit -m | |
| amend = commit --amend | |
| co = checkout | |
| st = status | |
| br = branch | |
| cle = !git checkout . && git clean -df | |
| undo = reset --soft HEAD~1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment