From 0fd1218785e38ab58798636237e6b039f995fdfc Mon Sep 17 00:00:00 2001 From: Ian Adam Naval Date: Wed, 26 Mar 2014 21:19:23 -0400 Subject: [PATCH] Adds gitconfig. --- git/gitconfig.dotfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 git/gitconfig.dotfile diff --git a/git/gitconfig.dotfile b/git/gitconfig.dotfile new file mode 100644 index 0000000..f844eed --- /dev/null +++ b/git/gitconfig.dotfile @@ -0,0 +1,34 @@ +[core] + whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol +[push] + default = current +[color] + ui = auto +[color "branch"] + current = yellow reverse + local = yellow + remote = green +[color "diff"] + meta = yellow bold + frag = magenta bold + old = red bold + new = green bold +[color "status"] + added = yellow + changed = green + untracked = cyan +[alias] + br = branch + ci = commit + co = checkout + df = diff + dfc = diff --cached + lg = log --patch --find-renames --find-copies + lgs = log --stat --find-renames --find-copies + lol = log --graph --decorate --format=oneline --abbrev-commit + lola = log --graph --decorate --format=oneline --abbrev-commit --all + ls = ls-files + st = status +[user] + email = ianonavy@gmail.com + name = Ian Adam Naval