来自自制软件的mac os上的git:致命:无法访问
Posted
技术标签:
【中文标题】来自自制软件的mac os上的git:致命:无法访问【英文标题】:git on mac os from homebrew: fatal: unable to access 【发布时间】:2015-04-07 15:26:46 【问题描述】:从 Homebrew 安装 Git 后,我无法使用远程存储库:
$ brew install git
$ git --version
git version 2.3.0
$ git pull
fatal: unable to access 'https://github.com/...': Couldn't connect to server
如果我删除 Homebrew 版本,一切正常。
如何使用最新版本的 git 来处理远程存储库?
更新:
我可以使用 SSH (git@github.com:...) 克隆存储库,但 HTTPS 网址出错 (https://github.com/...)
更新:
$ git config -l
Andrey Demidov, [07.02.15 23:48]
push.default=simple
user.name=Andrey Demidov
user.email=****@gmail.com
mergetool.keepbackup=false
http.sslverify=false
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=true
remote.origin.url=https://github.com/demas/stackify-node.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
更新:
$ GIT_CURL_VERBOSE=1 git push
stackify/node » GIT_CURL_VERBOSE=1 git push ‹master›
* Couldn't find host github.com in the .netrc file; using defaults
* Hostname was NOT found in DNS cache
* Trying 192.30.252.130...
* Immediate connect fail for 192.30.252.130: Host is down
* Closing connection 0
fatal: unable to access 'https://github.com/demas/stackify-node.git/': Couldn't connect to server
更新:
这是一个traceroute结果:
stackify/node » traceroute github.com ‹master›
traceroute to github.com (192.30.252.130), 64 hops max, 52 byte packets
load: 1.24 cmd: traceroute 34029 waiting 0.00u 0.00s
load: 1.24 cmd: traceroute 34029 waiting 0.00u 0.00s
load: 1.24 cmd: traceroute 34029 waiting 0.00u 0.00s
1 192.168.1.1 (192.168.1.1) 3.571 ms 3.022 ms 2.565 ms
2 bras255-lo0.ppos.corbina.net (195.14.38.33) 3.427 ms 4.671 ms 3.899 ms
3 * * *
4 ko-crs-be5.corbina.net (195.14.54.184) 23.766 ms 24.413 ms 25.010 ms
5 tc-bb-ae0.sto.corbina.net (195.14.54.157) 22.168 ms 21.946 ms 22.328 ms
6 beeline-gw6.bar1.stockholm1.level3.net (213.242.69.13) 22.280 ms
beeline-gw7.bar1.stockholm1.level3.net (213.242.110.217) 23.015 ms
beeline-gw1.bar1.stockholm1.level3.net (213.242.110.9) 23.303 ms
7 ae-3-80.edge3.washington4.level3.net (4.69.149.146) 138.533 ms
ae-4-90.edge3.washington4.level3.net (4.69.149.210) 150.283 ms *
更新:
所有 Git 命令在标准 OSX 控制台应用程序中都能正常工作 如果我在 iTerm 中将它们与sudo
一起使用,所有 Git 命令都可以正常工作。
但我只有在没有sudo
命令的 iTerm 中才有问题
【问题讨论】:
会***.com/a/21181447/6309 帮忙吗? 嗯....我不使用 Gitlab 当然,在你的情况下用 github.com 替换 gitlab。git config --global http.sslverify false
没有解决问题
是的,我已经下载了 iTerm 的夜间版本,一切正常!谢谢。
【参考方案1】:
我只遇到
iTerm
的问题。 我对标准控制台应用程序没有问题(即使没有sudo
)
显然,这是一个过时的iTerm
version 案例。 iTerm2
可能会更好,但 OP 补充说:
我已经下载了
iTerm
的夜间版本,一切正常!
【讨论】:
以上是关于来自自制软件的mac os上的git:致命:无法访问的主要内容,如果未能解决你的问题,请参考以下文章
致命:无法访问“H:\/.config/git/config”:参数无效 [Windows 7 上的 Git]
无法在 Mac OS X 10.13 High Sierra 中为自制软件 chown /usr/local
mac OS catalina上的git clone命令面临问题[关闭]