19 lines
264 B
Plaintext
19 lines
264 B
Plaintext
# sample git conditional configuration
|
|
|
|
```
|
|
[commit]
|
|
gpgsign = true
|
|
[gpg]
|
|
format = ssh
|
|
[user]
|
|
email = {{email}}
|
|
name = {{name}}
|
|
signingKey = {{path-to-pub-ssh-key}}
|
|
```
|
|
|
|
# sample allowed signers files
|
|
|
|
```
|
|
<email> namespaces="git" $(cat ~/.ssh/<key>.pub)
|
|
```
|