Skip to content

Instantly share code, notes, and snippets.

@xiaolai
Created October 3, 2012 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save xiaolai/3827574 to your computer and use it in GitHub Desktop.
Save xiaolai/3827574 to your computer and use it in GitHub Desktop.
gitconfig file
#===========================================
# Author: Francis Varga
# eMail: fv@varga-multimedia.com
# Blog: flexbuddha.posterous.com
#===========================================
#
# This is my .gitconfig file
#
# Did you have question ask me ;)...
[user]
name = FrancisVarga
email = github@varga-net.com
[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