CentOS 8 设置github代理

1. 设置http, https代理(针对http(s)协议的git仓库,如http(s)://git-package.com)
不需要为github单独设置代理,git默认使用系统的http_proxy
,https_proxy
变量,所以只需要设置系统的代理即可。
2. 设置ssh代理(针对git+ssh协议的git仓库,如git@github:git-package)
在~/.ssh/config
中添加如下内容:
1 | Host github.com |
不需要再额外设置系统的任何proxy变量。man ncat
查看ncat的帮助文档。
评论