view gitconfig @ 111:1f0d12295ba5

Add VHDL snippets
author zegervdv <zegervdv@me.com>
date Mon, 25 Aug 2014 11:43:33 +0200
parents 044395254e27
children 7e18562d7570
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\"
[status]
        branch = 1
[filter "media"]
	clean = git-media-clean %f
	smudge = git-media-smudge %f