我不能通过https访问GitHub后,我的Mac升级到优胜美地。
fatal: unable to access 'https://github.com/caskroom/homebrew-cask/': SSL: can't load CA certificate file实际上,它是brew更新,当请求github存储库时,大多数brew操作都是通过https完成的。
发布于 2014-10-20 15:45:00
使用git版本2.1.2 (在Yosemite上),我可以很好地下载repo:
git clone https://github.com/mitsuhiko/flask.git/
Cloning into 'flask'...
remote: Counting objects: 10113, done.
remote: Compressing objects: 100% (15/15), done.
remote: Total 10113 (delta 2), reused 5 (delta 1)
Receiving objects: 100% (10113/10113), 4.66 MiB | 1.52 MiB/s, done.
Resolving deltas: 100% (6112/6112), done.
Checking connectivity... done.发布于 2014-10-20 16:20:05
您可以尝试切换到ssh:
git clone git@github.com:mitsuhiko/flask.git使用https,您需要将CA(证书颁发机构)按顺序排列(as in this question)。
https://stackoverflow.com/questions/26460218
复制相似问题