Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashleighadams/keyden
1Password SSH key gatekeeper
https://github.com/ashleighadams/keyden
Last synced: 4 days ago
JSON representation
1Password SSH key gatekeeper
- Host: GitHub
- URL: https://github.com/ashleighadams/keyden
- Owner: AshleighAdams
- License: gpl-3.0
- Created: 2024-03-19T18:55:43.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-11-28T07:19:26.000Z (about 1 month ago)
- Last Synced: 2024-12-31T12:09:54.637Z (8 days ago)
- Language: C#
- Size: 8.64 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Keyden
![](docs/keyden-windows.png)
Make sure when you install Git for Windows, you do ***not*** use the bundled OpenSSH, but rather Window's OpenSSH.
[![https://get.microsoft.com/images/en-us%20dark.svg]()](https://apps.microsoft.com/detail/xpfnjv4f031nvw?mode=full)
> [!NOTE]
> If you installed Git's bundled OpenSSH, and you do not wish to reinstall Git, you may configure Git to use it with
>
> ```
> git config --global core.sshCommand "C:/Windows/System32/OpenSSH/ssh.exe"
> ```> [!WARNING]
> Ensure Window's OpenSSH SSH Authentication Agent is not running or enabled in servicesConfigure the daemon:
For `~/.ssh/configs`
```
Host *
IdentityAgent "//./pipe/openssh-ssh-agent"
```Then tell Git to use the signing key
```
git config --global gpg.format ssh
git config --global user.signingkey "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPECHV7YlDaqAEcbh+6TKaUE27RrylwlGjR5AwoAkBcW"
git config --global commit.gpgsign true
```## TODO:
- Add welcome popup showing how to configure Git
- Add ability to automatically configure Git's configure SSH agent
- Add ability to configure Git's signing keys