view gitconfig @ 44:4253a2206527

Add maid rule to clean mail downloads
author zegervdv <zegervdv@me.com>
date Thu, 24 Apr 2014 18:58:35 +0200
parents 4c3b25554bbb
children 4eeebfb45158
line wrap: on
line source

# Sample gitconfig
#

[hub]
	protocol = ssh
[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
[diff]
	tool = mvimdiff
[difftool "mvimdiff"]
    cmd = mvim -f -d \"$LOCAL\" \"$REMOTE\"