Last active
October 16, 2021 07:03
-
-
Save feanz/7c075a641e1fc05d0025 to your computer and use it in GitHub Desktop.
My custom git config
This file contains hidden or 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
[filter "lfs"] | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
required = true | |
clean = git-lfs clean -- %f | |
[user] | |
name = Richard Forrest | |
email = [email protected] | |
[core] | |
editor = 'C:/Program Files/vim/vim82/vim.exe' | |
autocrlf = true | |
[push] | |
default = current | |
[merge] | |
tool = kdiff3 | |
[mergetool "kdiff3"] | |
path = C:/Program Files/KDiff3/kdiff3.exe | |
trustExitCode = false | |
[diff] | |
guitool = kdiff3 | |
[difftool "kdiff3"] | |
path = C:/Program Files/KDiff3/kdiff3.exe | |
trustExitCode = false | |
[mergetool] | |
keepBackup = false | |
[include] | |
path = ~/.gitconfig.aliases | |
[credential] | |
helper = manager-core |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment