Skip to content

Instantly share code, notes, and snippets.

@abdullahkhilji
Created May 31, 2019 04:59
Embed
What would you like to do?
vi ~/.ssh/config --- SSH config file for PROXY connections for GitHub, GitLab and BitBucket
Host github.com
AddKeysToAgent yes
Hostname ssh.github.com
PreferredAuthentications publickey
UseKeychain yes
IdentityFile ~/.ssh/id_rsa
User git
Port 443
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