Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Signing workflow #441

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions APP_CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Should just work, no configuration needed

Add this to your `~/.ssh/config` (the path should match the socket path from the setup flow).

```
```text
Host *
IdentityAgent /Users/$YOUR_USERNAME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
```
Expand All @@ -21,7 +21,7 @@ Host *

Add this to your `~/.ssh/config` (the path should match the socket path from the setup flow).

```
```text
Host *
IdentityAgent /Users/$YOUR_USERNAME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
```
Expand All @@ -30,7 +30,7 @@ Host *

Add this to your `~/.ssh/config` (the path should match the socket path from the setup flow).

```
```text
Host *
IdentityAgent /Users/$YOUR_USERNAME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
```
Expand All @@ -39,7 +39,7 @@ Host *

Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist`

```
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
Expand All @@ -64,7 +64,7 @@ Log out and log in again before launching Cyberduck.

Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist`

```
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
Expand All @@ -89,7 +89,7 @@ Log out and log in again before launching Mountain Duck.

Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist`

```
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
Expand All @@ -110,7 +110,7 @@ Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist`

Log out and log in again before launching Gitkraken. Then enable "Use local SSH agent in GitKraken Preferences (Located under Preferences -> SSH)

# The app I use isn't listed here!
## The app I use isn't listed here!

If you know how to get it set up, please open a PR for this page and add it! Contributions are very welcome.
If you're not able to get it working, please file a [GitHub issue](https://github.com/maxgoedjen/secretive/issues/new) for it. No guarantees we'll be able to get it working, but chances are someone else in the community might be able to.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ struct ShellConfigurationController {
shellConfigDirectory: "~/.config/fish",
shellConfigFilename: "config.fish",
text: "set -x SSH_AUTH_SOCK \(socketPath)"),
ShellConfigInstruction(shell: "git",
shellConfigDirectory: "~/",
shellConfigFilename: ".gitconfig",
text: "[gpg]\n\tformat = ssh\n[commit]\n\tgpgsign = true\n[tag]\n\tgpgsign = true"),
]

}
Expand Down