2018-10-25

ubuntu18.04上如何为git设置ssh代理

    在国内访问GitHub上的项目进行像git clone、git pull、git push等操作的时候,会非常非常的慢.如果想设置git代理,首先你得会科学上网.爬墙工具
    如果你已经能科学上网了,请继续向下看.因为我使用的是ssh协议,所以我设置了ssh代理.如果你使用像git@github.com:ZjBlog/ZjBlog.github.io.git这样的地址,那你的配置就和我一样了.在~/.ssh/新建config文件,在config文件中加入以下配置

Host github.com
User git
Hostname github.com
Port 22
Proxycommand nc -x 127.0.0.1:1080 %h %p

github可以换成其它代码托管网站的地址.这样就配置好了,速度就非常快了,亲测可以.

Gitalking ...

Markdown is supported

Be the first guy leaving a comment!