Skip to content
.gitconfig 751 B
Newer Older
nimrod's avatar
nimrod committed
[user]
	name = Adar Nimrod
	email = nimrod@shore.co.il
	signingKey = 9AAA2526
nimrod's avatar
nimrod committed
[push]
	default = simple
nimrod's avatar
nimrod committed
[alias]
nimrod's avatar
nimrod committed
    clone-recursive = clone --recursive
    push-tags = push --tags
    pull-submodules = submodule update --remote
nimrod's avatar
nimrod committed
    diff-cached = diff --cached
    tag-version = !git tag -f "v$(cat VERSION)"
    serve-git = !git daemon --reuseaddr --verbose  --base-path=. --export-all ./.git
    serve-http = !git update-server-info && cd .git && python -m SimpleHTTPServer
    diff = diff --color-words
    pull = pull --progress
[transfer]
    fsckobjects = true
[fetch]
    fsckobjects = true
[receive]
    fsckObjects = true
nimrod's avatar
nimrod committed
[merge]
nimrod's avatar
nimrod committed
	tool = meld
nimrod's avatar
nimrod committed
[diff]
nimrod's avatar
nimrod committed
	tool = meld
nimrod's avatar
nimrod committed
[difftool]
	prompt = false
nimrod's avatar
nimrod committed
[core]
	excludesfile = /home/nimrod/.gitignore_global