Created
October 3, 2012 15:29
-
-
Save xiaolai/3827574 to your computer and use it in GitHub Desktop.
gitconfig file
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
#=========================================== | |
# Author: Francis Varga | |
# eMail: [email protected] | |
# Blog: flexbuddha.posterous.com | |
#=========================================== | |
# | |
# This is my .gitconfig file | |
# | |
# Did you have question ask me ;)... | |
[user] | |
name = FrancisVarga | |
email = [email protected] | |
[core] | |
symlinks = false | |
autoCRLF = input | |
[pack] | |
packSizeLimit = 2g | |
[help] | |
format = html | |
[http] | |
sslCAinfo = /bin/curl-ca-bundle.crt | |
[color] | |
diff = auto | |
branch = auto | |
status = auto | |
[alias] | |
st = status | |
d = diff | |
ci = commit -v | |
cia = commit -v -a | |
ca = commit -a -m | |
co = checkout -b | |
cp = cherry-pick | |
l = log | |
ll = log -p | |
lt = log trunk.. | |
llt = log -p trunk.. | |
lm = log master.. | |
llm = log -p master.. | |
b = branch | |
pom = push origin master | |
ads = submodule add | |
rem = remote add origin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment