Migrate commit signing to gitconfig option.

This is kept, for now, in `~/.gitconfig` thus:

```
[commit]
    gpgSign = true
```

This might be migrated into the universal gitconfig, but
that would require key setup for ephemeral cases.
This commit is contained in:
ADAM David Alan Martin
2018-05-07 16:36:04 -04:00
parent 6ba03c8dc4
commit 0d1f7ce860

View File

@ -8,7 +8,7 @@
[alias]
br = branch
ci = commit -S
ci = commit
co = checkout
st = status
dc = diff --check
@ -36,5 +36,10 @@
[log]
showsignature = true
indentheuristic = true
[diff]
indentheuristic = true
# vim: ft=gitconfig