view gitconfig @ 3:44d3af8838f8

Add support for local zshrc and vimrc files
author zegervdv <zegervdv@me.com>
date Sun, 23 Feb 2014 17:43:37 +0100
parents a8279f1d5b39
children 599325301323
line wrap: on
line source

# Sample gitconfig
#

[hub]
        protocol = https
[alias]
        co = checkout
        count   = !git shortlog -sn
        sl = log --oneline --stat
[color]
        diff = auto
        status = auto
        branch = auto
        ui = true
[core]
        excludesfile = ~/.gitignore
        editor = vim
[apply]
        whitespace = nowarn
[mergetool]
        keepBackup = false
[difftool]
        prompt = false
[help]
        autocorrect = 1
[include]
        path = .gitconfig.local
[push]
        # See `git help config` (search for push.default)
        # for more information on different options of the below setting.
        #
        # Setting to git 2.0 default to surpress warning message
        default = simple
[init]
	templatedir = ~/.templates/git