From: R. Steve McKown Date: Sat, 17 Oct 2015 08:02:31 +0000 (-0600) Subject: Add .gitconfig X-Git-Url: https://oss.titaniummirror.com/gitweb?p=smckown%2Fdotfiles.git;a=commitdiff_plain;h=abe81c0866f176529b353507cbb3b8b62d5dad2e Add .gitconfig --- diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000..0f4f4e6 --- /dev/null +++ b/gitconfig @@ -0,0 +1,23 @@ +[user] + name = R. Steve McKown + email = rsmckown@gmail.com +[color] + ui = auto +[alias] + llog = log --date=local +[log] + decorate = true +[diff] + ; diff.tool kdiff3 useful for 'git diffall' + tool = kdiff3 + mnemonicprefix = true +[difftool] + prompt = false +[merge] + tool = vimdiff +[mergetool] + prompt = false +[push] + default = simple +[branch] + autosetuprebase = always diff --git a/install.sh b/install.sh index ee4265a..10024b6 100755 --- a/install.sh +++ b/install.sh @@ -37,3 +37,4 @@ dolink .dotfiles/Xdefaults .Xdefaults dolink .dotfiles/Xresources .Xresources dolink .dotfiles/xbindkeysrc.scm .xbindkeysrc.scm dolink .dotfiles/dwmrc .dwmrc +dolink .dotfiles/gitconfig .gitconfig