1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

Enforce git commit signing

Add 'git verbs' command
This commit is contained in:
2016-10-14 22:40:54 +01:00
parent 0841c1e6b8
commit 4635a0842c

22
.config/git/config Normal file
View File

@ -0,0 +1,22 @@
[user]
name = Joe Groocock
email = frebib@gmail.com
signingkey = CFBB6A86
[commit]
gpgsign = true
[color]
ui = auto
[alias]
verbs = !git log --pretty=format:'%s' | cut -d \" \" -f 1 | sort | uniq -c | sort -nr
[rebase]
autoStash = true
[push]
default = upstream
[advice]
statusHints = false
pushUpdateRejected = false
[pull]
rebase = true
[core]
autocrlf = input