Created
August 17, 2013 23:47
-
-
Save jansanchez/6259212 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 = Jan Sanchez | |
email = [email protected] | |
[credential] | |
helper = cache --timeout=3600 | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold | |
new = green bold | |
[color "status"] | |
added = yellow | |
changed = green | |
untracked = cyan | |
[apply] | |
whitespace = fix | |
[alias] | |
st = status | |
pu = pull | |
ck = checkout | |
cb = checkout -b | |
br = branch | |
cm = commit | |
ca = commit -am | |
ad = add . | |
me = merge | |
ps = push | |
or = origin | |
db= branch -d | |
lg = log --graph -10 | |
ll = log --graph -30 --pretty=format:'%Cgreen%h %Creset%ad %Cblue%an %Creset%s' | |
in = fetch --dry-run | |
out = push --dry-run | |
[core] | |
editor = vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment