报错:
LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to raw.githubusercontent.com:443
本来以为是git config开了什么代理 发现并没有设置任何代理
后来去查了一下发现可能与github不能访问有关
解决方案
首先在vim里面打开macOS的hosts文件
sudo vi /etc/hosts
提示输入开机密码 输入就好了
打开了hosts之后 用i进入编辑模式
#加上下面几行代码
199.232.68.133 raw.githubusercontent.com
199.232.68.133 user-images.githubusercontent.com
199.232.68.133 avatars2.githubusercontent.com
199.232.68.133 avatars1.githubusercontent.com
然后就可以curl啦!