Created
December 7, 2011 22:05
-
-
Save ulisesrmzroche/1444915 to your computer and use it in GitHub Desktop.
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
[core] | |
excludesfile = ~/.gitignore | |
editor = vim -f -U ~/.vimrc | |
autocrlf = false | |
whitespace = fix | |
[color] | |
ui = auto | |
[alias] | |
co = checkout | |
br = branch | |
ci = commit | |
m = checkout master | |
rr = reset --hard origin/master | |
d = diff --color-words | |
s = show --color-words | |
sign = commit --amend -sC HEAD | |
amend = commit --amend -C HEAD | |
l = log --graph --date=short --pretty='format:%C(green)%ad %C(yellow)%h%Creset %C(cyan)%aN (%cN)%Creset %s%C(magenta bold)%d%Creset' | |
ll = log --decorate --pretty=full --shortstat --abbrev-commit --dirstat | |
la = log --decorate --pretty=full --stat --abbrev-commit --name-status | |
p = format-patch master | |
st = status -sb | |
cp = cherry-pick | |
b = checkout -b | |
[push] | |
default = tracking | |
[branch "master"] | |
rebase = true | |
[branch] | |
autosetuprebase = always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment