Skip to content

Instantly share code, notes, and snippets.

@lucduong
Last active January 9, 2019 04:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucduong/c70cad845dac3a022334d2ef9a69d0ae to your computer and use it in GitHub Desktop.
Save lucduong/c70cad845dac3a022334d2ef9a69d0ae to your computer and use it in GitHub Desktop.
Git Config
[alias]
st = status
ci = commit -v
co = checkout
up = pull origin
info = remote -v
d = diff
df = diff
dfc = diff --cached
dc = diff --cached
staged = diff --cached
log = log -v
lp = log -p
lg = log -p --graph
a = add
br = branch
b = branch
tree = log --graph --pretty=oneline --abbrev-commit --decorate
unst = reset HEAD
[color]
ui = auto
[core]
excludesfile = /Users/luc/.gitignore_global
editor = vim
[push]
default = matching
[credential]
helper = osxkeychain
[user]
name = Luc
email = luc@ltv.vn
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment