安装git
安装homebrew,通过homebrew安装git,具体操作,直接在终端环境下输入如下命令运行
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
运行可能会出现问题(1):
Failed to connect to raw.githubusercontent.com port 443: Connection refused • 1
解决方法:
修改hosts
sudo vim /etc/hosts
添加如下内容再次运行:
199.232.28.133 raw.githubusercontent.com
运行可能出现问题(2):
Downloading Command Line Tools for Xcode Error downloading Command Line Tools for Xcode: The operation couldn’t be completed. (PKDownloadError error 8.) Done.
解放方法:
使用 Terminal 运行如下代码安装,默认安装(Command Line Tools)最新版本
运行可能出现问题(3):
==> Downloading and installing Homebrew... fatal: unable to access 'https://github.com/Homebrew/brew/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 Failed during: git fetch --force origin
解决方法:
ping http://github.com 获取ip地址Command+Shift+G,打开/etc/hosts文件,将域名添加上就可以了:192.30.253.113 http://github.com (hosts文件修改后,会提示没有权限,分享一个我的做法:将hosts文件复制一个到桌面,添加完域名,保存,再将此文件拖回到etc文件夹下,替换掉原来的文件,中间根据提示输入用户密码即可)
下载完成后,重新输入命令代码即可