-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sign Git commits with SSH and 1Password
In addition to PGP/GPG keys, Git and GitHub now allow SSH keys to be used for Git commit signing and verification. 🎉 1Password can now be used to sign Git commits with SSH. 🤩 https://blog.1password.com/git-commit-signing/ https://developer.1password.com/docs/ssh/git-commit-signing https://docs.github.com/en/authentication/managing-commit-signature-verification https://github.blog/changelog/2022-08-23-ssh-commit-verification-now-supported/ 2b64f3f br3ndonland/br3ndonland@08257e6
- Loading branch information
1 parent
7b1a064
commit a38644d
Showing
3 changed files
with
36 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,10 @@ required = true | |
[github] | ||
user = br3ndonland | ||
[gpg] | ||
program = /opt/homebrew/bin/gpg | ||
format = ssh | ||
[gpg "ssh"] | ||
allowedsignersfile = ~/.ssh/allowed_signers | ||
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign" | ||
[init] | ||
defaultbranch = main | ||
[pull] | ||
|
@@ -74,4 +77,4 @@ sort = -taggerdate:iso | |
[user] | ||
name = Brendon Smith | ||
email = [email protected] | ||
signingkey = 5439C6F63C0E8D0C17E534D7783DBAF23C1D6478 | ||
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCwzZoq3tQx2P4PRgtaxhq/pqxJCdxQvel7MqBSs5ui |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[email protected] ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCwzZoq3tQx2P4PRgtaxhq/pqxJCdxQvel7MqBSs5ui |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters