Last active
December 17, 2015 18:39
-
-
Save emag/5654874 to your computer and use it in GitHub Desktop.
プロキシ環境で git を利用する際の ${HOME}/.ssh/config の内容。要 corkscrew コマンド
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 | |
HostName github.com | |
Port 22 | |
ProxyCommand corkscrew $PROXY_DOMAIN $PROXY_PORT %h %p | |
User git | |
IdentityFile ~/.ssh/id_rsa | |
IdentitiesOnly yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment