Skip to content

Instantly share code, notes, and snippets.

@zdway10
Forked from xiaolai/gist:3827574
Created March 17, 2020 22:58
Show Gist options
  • Save zdway10/cc613c126fed9f31198b445979a3b5ab to your computer and use it in GitHub Desktop.
Save zdway10/cc613c126fed9f31198b445979a3b5ab to your computer and use it in GitHub Desktop.
gitconfig file
#===========================================
# 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