git相关

作者: Tumaine | 来源:发表于2019-02-13 09:37 被阅读0次

安装git后,无法从github上克隆https 文件
显示为
fatal: unable to access 'https://github.com/jackgitgz/CnblogsSpider.git/': Failed to connect to 127.0.0.1 port 34659: 拒绝连接
好像是因为之前我加了代理,但是在我卸载git重装后,仍然没有取消代理。然后我直接删除了.gitconfig文件后,变成了
fatal: unable to access 'https://github.com/jackgitgz/CnblogsSpider.git/': Failed to connect to 127.0.0.1 port 45997: 拒绝连接
然后在终端输入env|grep -i proxy后显示

https_proxy=http://127.0.0.1:45997/
http_proxy=http://127.0.0.1:45997/
no_proxy=localhost,127.0.0.0/8,::1
NO_PROXY=localhost,127.0.0.0/8,::1
HTTPS_PROXY=http://127.0.0.1:45997/

最后输入unset https_proxyunset HTTPS_PROXY把相应的代理关掉后,就成功了

相关文章

  • git基本命令

    git常用命令 git丢弃更改相关 git连接远程仓库相关 git切换分支相关 git stash相关 git标签相关

  • 前端 | Git的学习

    文章目录 Git相关命令 Git相关命令 git init :初始化本地git目录,生成 .git 文件夹 git...

  • 2019-06-26: Git 相关?

    一:Git相关 '--------------------------git pull--------------...

  • Git相关

    关联到GitHub http://www.runoob.com/git/git-remote-repo.html

  • Git相关

    更新 fork 的仓库 https://github.com/lxconan/java/blob/master/s...

  • git相关

    常见命令 git help git config --global user.name "一纸砚白" git co...

  • git 相关

    2018年3月27日15:31:29 用eclipse 用习惯了,换着思维使用一下git,服务器用的是coding...

  • git相关

    https://www.jianshu.com/p/52694939213b

  • git相关

    本地创建新分支: git checkout -b 新分支名字 或者 git branch 新分支名字 git br...

  • git 相关

    1,git clone .. 克隆远程分支到本地。 2,git checkout branchName 在本地切换...

网友评论

      本文标题:git相关

      本文链接:https://www.haomeiwen.com/subject/tirreqtx.html