Created
September 16, 2011 03:14
-
-
Save wesrog/1221117 to your computer and use it in GitHub Desktop.
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] | |
email = [email protected] | |
name = Wes Rogers | |
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
df = diff | |
dfs = diff --staged | |
lg = log -p | |
com = checkout master | |
[color] | |
ui = auto | |
[color "diff"] | |
meta = blue bold | |
frag = magenta bold | |
old = red bold | |
new = green bold | |
[color "branch"] | |
current = yellow reverse | |
local = yellow bold | |
remote = green bold | |
plain = red bold | |
[color "status"] | |
added = yellow | |
changed = green bold | |
untracked = blue bold | |
[core] | |
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = /Users/wesrog/.gitignore |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment