1、在项目主文件 .git -> config文件
//邮箱 与 名称配置
[user]
name = gege
email = 邮箱名称
2、gitHub一直上传失败
并报错git pull --tags origin master
fatal: unable to access 'https:/github.com项目名称': Failed to connect to github.com port 443 after 21091 ms: Couldn't connect to server
解决方案一
2.1、使用config文件直接配置
//注释:config文件里配置 http:// 本地域名:端口号port 《猫:专用》
[http]
proxy = http://192.166.1.88:7890
2.2、或使用终端命令输入
git config http.proxy http://192.166.1.88:7890
解决方案二
在hosts文件配置本地 gitHub代理地址
1、hosts文件位置
C:\Windows\System32\drivers\etc\hosts
2、编辑文件,在最后位置添加 / 当不使用时可 #140.82.114.4 github.com
140.82.114.4 github.com