diff options
author | June McEnroe <programble@gmail.com> | 2013-06-08 01:25:45 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2013-06-08 01:25:45 -0400 |
commit | 8793a4d127b8059818ed5843e246aebd768e472a (patch) | |
tree | 3325c77ba1d6b3d7cbdad2f42e60d618c0172b2c /.gitconfig | |
parent | Ignore effuse backup files (diff) | |
download | src-8793a4d127b8059818ed5843e246aebd768e472a.tar.gz src-8793a4d127b8059818ed5843e246aebd768e472a.zip |
Add git config
Diffstat (limited to '')
-rw-r--r-- | .gitconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 00000000..cec949b5 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,20 @@ +[user] + name = Curtis McEnroe + email = programble@gmail.com +[core] + editor = vim + excludesfile = /home/curtis/.gitignore.global + autocrlf = input +[sendemail] + smtpencryption = tls + smtpserver = smtp.gmail.com + smtpuser = programble@gmail.com + smtpserverport = 587 +[merge] + tool = vimdiff +[color] + ui = true +[push] + default = simple +[include] + path = .gitconfig.private |