diff options
Diffstat (limited to '.gitconfig')
-rw-r--r-- | .gitconfig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..b089ca6 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,25 @@ +[user] + name = Egor Tensin + email = Egor.Tensin@gmail.com +[core] + editor = vim + ignorecase = false + autocrlf = true +[push] + default = current +[merge] + tool = kdiff3 +[mergetool "kdiff3"] + trustExitCode = false +[mergetool] + keepBackup = false +[diff] + tool = kdiff3 +[difftool] + keepBackup = false +[difftool "kdiff3"] + trustExitCode = false +[pull] + ff = only +[config] + autocrlf = true |