Files
dotfiles/ssh/example
Li Tang 5bbf5b4b3b feat: 1Password SSH agent auto-setup and SSH config template
- Add 1Password SSH agent socket symlink creation in setup.sh
- Copy ssh/example template to ~/.ssh/config on fresh install
- Update Brewfile with additional packages (bun, pnpm, qq, teamviewer, etc.)
- Update documentation (CHECKLIST, MIGRATION_GUIDE, README)
2026-03-24 17:51:47 +08:00

28 lines
518 B
Plaintext

Include ~/.orbstack/ssh/config
Host *
IdentityAgent "~/.1password/agent.sock"
ServerAliveInterval 60
TCPKeepAlive yes
Host github.com
Hostname ssh.github.com
Port 443
User git
IdentityFile ~/.ssh/Personal.pub
IdentitiesOnly yes
Host personalgit
Hostname ssh.github.com
Port 443
User git
IdentityFile ~/.ssh/Personal.pub
IdentitiesOnly yes
Host workgit
Hostname ssh.github.com
Port 443
User git
IdentityFile ~/.ssh/Work.pub
IdentitiesOnly yes