- cmd查看是否使用代理
git config --global http.proxy
- 取消代理
git config --global --unset http.proxy
- 即可成功修改。
但是,我在拉取代码时又报错,git提示Can't update(master has no tracked branch),原因是本地分支和远程分支没有关联,需要关联远程分支。
文章来源:https://www.toymoban.com/news/detail-572988.html
- 解决方法为执行
git push --set-upstream origin master
这样本地分支就和远程master分支关联了。文章来源地址https://www.toymoban.com/news/detail-572988.html
到了这里,关于Failed to connect to 127.0.0.1 port 7890 after 2034 ms: Couldn‘t connect to server的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!