shell-things/conf/gitconfig

40 lines
917 B
Plaintext
Raw Normal View History

[user]
# name = Mikaela Suomalainen
2015-01-10 11:17:47 +01:00
# email = mikaela+git@mikaela.info
2014-11-05 14:13:15 +01:00
# signingkey = 0x0C207F07B2F32B67
[alias]
cleandi = clean -di
cleandix = clean -dix
# From http://progit.org/book/ch2-7.html
last = cat-file commit HEAD
# From https://github.com/blog/985-git-io-github-url-shortener#comment-15121
mergen = merge --no-ff
pulln = pull --no-ff
pullen = pull --no-ff
shorten = "!sh -c 'curl -i http://git.io -F url=$1' -"
[core]
editor = vim
autocrlf = input
[color]
2014-06-01 15:18:18 +02:00
# From git manpage and http://book.git-scm.com/5_customizing_git.html
branch = true
diff = true
grep = true
interactive = true
pager = true
showbranch = true
status = true
ui = true
2014-05-25 16:28:49 +02:00
[push]
2014-06-01 15:18:18 +02:00
default = current
2016-04-10 10:50:38 +02:00
gpgSign = if-asked
[credential]
helper = cache --timeout=86400
[merge]
ff = only
2015-02-14 21:48:03 +01:00
[format]
2016-04-10 10:50:38 +02:00
signOff = true
2016-04-09 12:04:48 +02:00
[commit]
gpgsign = true