2024-05-08 23:18:00 +00:00
|
|
|
# sample git conditional configuration
|
|
|
|
|
|
|
|
```
|
2024-04-08 18:19:59 +00:00
|
|
|
[commit]
|
|
|
|
gpgsign = true
|
|
|
|
[gpg]
|
|
|
|
format = ssh
|
|
|
|
[user]
|
|
|
|
email = {{email}}
|
|
|
|
name = {{name}}
|
|
|
|
signingKey = {{path-to-pub-ssh-key}}
|
2024-05-08 23:18:00 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
# sample allowed signers files
|
2024-04-08 18:19:59 +00:00
|
|
|
|
2024-05-08 23:18:00 +00:00
|
|
|
```
|
|
|
|
<email> namespaces="git" $(cat ~/.ssh/<key>.pub)
|
|
|
|
```
|