From a3ccc15c8ffa91d94b4e6a8927211bb3afce008a Mon Sep 17 00:00:00 2001 From: Vlad Doster Date: Thu, 28 Nov 2019 19:59:08 -0500 Subject: [PATCH] Create .gitconfig --- .gitconfig | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 00000000..0325d957 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,31 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true + editor = vim + excludesfile = ~/.gitignore_global +[user] + name = Vlad Doster + email = mvdoster@gmail.com +[color] + status = auto + commit = auto + diff = auto + branch = auto +[alias] + st = status + st = status + co = checkout + ci = commit + br = branch + ff = merge origin + diff = diff --ignore-space-change + dst = diff --staged +[apply] + whitespace = strip + whitespace = nowarn +[push] + default = simple +[credential] + helper = cache --timeout=28800