Last active
November 2, 2015 11:00
-
-
Save yoavram/c1f71ca235a7ef217df3 to your computer and use it in GitHub Desktop.
My git config to be placed in C:\Users\yoavram
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
# gist at https://gist.github.com/c1f71ca235a7ef217df3 | |
[user] | |
email = [email protected] | |
name = Yoav Ram | |
[push] | |
default = simple | |
[core] | |
pager = less -r | |
autocrlf = true | |
# http://blog.martinfenner.org/2014/08/25/using-microsoft-word-with-git/ | |
[diff "pandoc"] | |
textconv = pandoc --to=markdown | |
prompt = false | |
[alias] | |
wdiff = diff --word-diff=color --unified=1 | |
l = log --oneline --decorate -10 | |
[filter "lfs"] | |
clean = git lfs clean %f | |
smudge = git lfs smudge %f | |
required = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment