Last active
January 9, 2019 04:24
-
-
Save lucwj/c70cad845dac3a022334d2ef9a69d0ae to your computer and use it in GitHub Desktop.
Git Config
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
[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 = [email protected] | |
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
required = true | |
process = git-lfs filter-process |
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
.idea | |
.DS_Store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment