Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
4 years agoSSH Commit Signing
I've stated signing my git commits using SSH.
However this only seems to work with setting the SSH_AUTH_SOCK env variable. For some reasons I cannot set that variable everywhere and have to rely...
Former Member
4 years agoIn the meantime I have created a gpg-ssh-program
helper script myself:
```sh
!/bin/sh
SSH_AUTH_SOCK=~/.1password/agent.sock ssh-keygen "$@"
```
And then as git config:
config
[gpg "ssh"]
program = /Users/<username>/<path-to-script>/gpg-ssh-program