# SSH Config Template # Copy to ~/.ssh/config and update with your actual values # Global defaults Host * AddKeysToAgent yes UseKeychain yes # Update with your default key IdentityFile ~/.ssh/id_ed25519 # GitHub Host github.com HostName github.com User git IdentityFile ~/.ssh/github_key IdentitiesOnly yes # Example: Personal Server # Host myserver # HostName server.example.com # User yourusername # Port 22 # IdentityFile ~/.ssh/server_key # IdentitiesOnly yes # Example: Work Server with Jump Host # Host work-server # HostName internal.work.com # User workuser # ProxyJump jumphost.work.com # IdentityFile ~/.ssh/work_key # IdentitiesOnly yes