Created
June 4, 2015 15:58
-
-
Save mccutchen/df67559465f85251b2a4 to your computer and use it in GitHub Desktop.
Basic ~/.gitconfig
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 HERE | |
| email = YOUR EMAIL ADDRESS HERE | |
| [alias] | |
| br = branch | |
| ci = commit | |
| co = checkout | |
| lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%an, %cr)%Creset' --abbrev-commit --date=relative --topo-order | |
| st = status -sb | |
| up = fetch --all --prune | |
| [color] | |
| ui = auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment