当前位置:   article > 正文

Git 配置网络代理

Git 配置网络代理
Git 配置文件

一般情况下,全局配置文件路径是 C:\Users\你的用户名\.gitconfig

项目单独的配置文件路径是 你的项目路径\.git\config,需要显示隐藏文件才能看到 .git 文件夹。

配置代理

需要知道自己本地代理的端口。假设本地 socks 代理端口为 10808http 代理端口为 10809,则有以下两种方式:

1. socks5
[http "https://github.com"]
	proxy = socks5://127.0.0.1:10808
[https "https://github.com"]
	proxy = socks5://127.0.0.1:10808
  • 1
  • 2
  • 3
  • 4
2. http
[http "https://github.com"]
	proxy = http://127.0.0.1:10809
[https "https://github.com"]
	proxy = https://127.0.0.1:10809
  • 1
  • 2
  • 3
  • 4

以下是用户名配置:

[user]
	name = abcd
	email = abcd@qq.com
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/482680
推荐阅读
相关标签
  

闽ICP备14008679号