diff options
author | June McEnroe <june@causal.agency> | 2013-06-08 01:25:45 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2013-06-08 01:25:45 -0400 |
commit | 18a83946259fbcc44eda7b23efa499eb7f0e53f6 (patch) | |
tree | 25eac89082a0f11518f18f35773b3206265ce8c8 | |
parent | Ignore effuse backup files (diff) | |
download | src-18a83946259fbcc44eda7b23efa499eb7f0e53f6.tar.gz src-18a83946259fbcc44eda7b23efa499eb7f0e53f6.zip |
Add git config
Diffstat (limited to '')
-rw-r--r-- | .gitconfig | 20 | ||||
-rw-r--r-- | .gitignore.global | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 00000000..23abcf8f --- /dev/null +++ b/.gitconfig @@ -0,0 +1,20 @@ +[user] + name = June McEnroe + email = programble@gmail.com +[core] + editor = vim + excludesfile = /home/home/.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 diff --git a/.gitignore.global b/.gitignore.global new file mode 100644 index 00000000..b72f9be2 --- /dev/null +++ b/.gitignore.global @@ -0,0 +1,2 @@ +*~ +*.swp |