gitconfig: Don't use gpgsign = true
The reason is that this causes all kinds of operations to sign, many even sign multiple times. This option is completely unusable with a smartcard that requires a PIN. Instead, only sign when commiting using ci.
This commit is contained in:
parent
10b295cc6f
commit
051f60c7a6
1 changed files with 1 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
||||||
interactive = auto
|
interactive = auto
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
ci = commit
|
ci = commit -S
|
||||||
co = checkout
|
co = checkout
|
||||||
d = diff
|
d = diff
|
||||||
ds = diff --staged
|
ds = diff --staged
|
||||||
|
@ -24,8 +24,5 @@
|
||||||
[push]
|
[push]
|
||||||
default = matching
|
default = matching
|
||||||
|
|
||||||
[commit]
|
|
||||||
gpgsign = true
|
|
||||||
|
|
||||||
[gpg]
|
[gpg]
|
||||||
program = gpg2
|
program = gpg2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue