Created
June 19, 2022 01:26
-
-
Save rosuH/32bd1963622a3399c9081eeb8b002ab5 to your computer and use it in GitHub Desktop.
SSH Proxy config
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 * | |
AddKeysToAgent yes | |
UseKeychain yes | |
IdentityFile ~/.ssh/id_ed25519 | |
Host github.com | |
Hostname ssh.github.com | |
AddKeysToAgent yes | |
Port 443 | |
UseKeychain yes | |
IdentityFile ~/.ssh/id_ed25519 | |
User git | |
ProxyCommand nc -v -X 5 -x 127.0.0.1:7890 %h %p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment