diff options
Diffstat (limited to 'gitconfig')
-rw-r--r-- | gitconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000..b17af33 --- /dev/null +++ b/gitconfig @@ -0,0 +1,22 @@ +[user] + name = Matt Singleton + email = matthew.j.singleton@gmail.com + +[alias] + st = status + ci = commit + br = branch + co = checkout + df = diff + lg = log -p + +[core] + whitespace = trailing-space,space-before-tab,cr-at-eol + editor = vim + autocrlf = input + +[push] + default = nothing + +[color] + ui = true |