标签:方法 sts 删除 lin linked already war 速度 mave
在 Mac 上安装 Git 有多种方式。
最简单的方法是安装 Xcode Command Line Tools
Mavericks (10.9) 或更高版本的系统中,在 Terminal 里尝试首次运行 git 命令即可
$ git --version
会弹框提示安装
官方地址:https://brew.sh
安装指令
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
如果有报错无法连接raw.githubusercontent.com
只需要在hosts文件中绑定相应的IP地址
IP查询地址:https://site.ip138.com/raw.Githubusercontent.com/
然后重新执行安装指令
如果因为下载速度慢又报错
那就使用国内源
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
先卸载原来的git,查询git位置
which -a git
一般来说,默认位置是在/usr/bin/git
删除原先的git
cd /usr/bin sudo rm -rf git*
然后通过brew指令下载git
brew install git
然后更改默认的git指向
brew link git --overwrite
如果已经link过,那么会告警
Warning: Already linked: /opt/homebrew/Cellar/git/2.30.1 To relink: brew unlink git && brew link git
标签:方法 sts 删除 lin linked already war 速度 mave
原文地址:https://www.cnblogs.com/YC-L/p/14495585.html