config ssh proxy
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
Host github.com | |
AddKeysToAgent yes | |
Hostname ssh.github.com | |
PreferredAuthentications publickey | |
UseKeychain yes | |
IdentityFile ~/.ssh/id_rsa | |
User git | |
Port 443 | |
proxycommand socat - PROXY:127.0.0.1:%h:%p,proxyport=8080 | |
Host gitlab.com | |
AddKeysToAgent yes | |
Hostname altssh.gitlab.com | |
PreferredAuthentications publickey | |
UseKeychain yes | |
IdentityFile ~/.ssh/id_rsa | |
User git | |
Port 443 | |
Host bitbucket.org | |
AddKeysToAgent yes | |
Hostname altssh.bitbucket.org | |
PreferredAuthentications publickey | |
IdentityFile ~/.ssh/id_rsa | |
User git | |
Port 443 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment