Created
May 10, 2011 11:21
-
-
Save eFrane/964294 to your computer and use it in GitHub Desktop.
My .gitconfig
This file contains 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 = Stefan Graupner | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
ui = auto | |
[core] | |
compression = 7 | |
[alias] | |
graphviz = "!f() { echo 'digraph git {' ; git log --pretty='format: %h -> { %p }' \"$@\" | sed 's/[0-9a-f][0-9a-f]*/\"&\"/g' ; echo '}'; }; f" | |
dotty = "!git graphviz | dotty /dev/stdin" | |
ci = commit | |
co = checkout | |
cl = clone | |
ru = remote update | |
svnup = svn fetch | |
svnci = svn dcommit | |
s = status | |
st = status --porcelain -u . | |
subdo = submodule foreach git | |
origp = push origin --all | |
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
[pack] | |
threads = 4 | |
[gist] | |
browse = no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment