Created
February 17, 2011 18:20
-
-
Save JoseRibeiro/832304 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] | |
name = José Ribeiro | |
email = [email protected] | |
[color] | |
status = auto | |
branch = auto | |
ui = true | |
[diff] | |
color = auto | |
[pager] | |
color = true | |
[status] | |
color = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold | |
new = green bold | |
whitespace = red reverse | |
[color "status"] | |
added = yellow | |
changed = green | |
untracked = cyan | |
[core] | |
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
[alias] | |
pl = pull origin master | |
ph = push origin master | |
st = status | |
ci = commit -am | |
br = branch | |
co = checkout | |
df = diff | |
lg = log -p | |
a = add . | |
[github] | |
user = JoseRibeiro | |
[merge] | |
tool = meld |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment