直接下载git for mac 安装包,https://git-scm.com/download/mac
安装完后,git的默认安装目录是:
/usr/local/git
但是使用 which git 命令后,发现git的目录是:
/usr/bin/git
意思是我们安装的git-xxx.dmg默认路径在/usr/local/git,但Mac系统执行git命令却去/usr/bin/git下找。
解决方法
- 修改环境变量,将新的git路径写入系统环境变量
- 打开.bash_profile文件(vi ~/.bash_profile),将新的git路径写进去,保存
- 然后执行:source ~/.bash_profile
PATH=/usr/local/git/bin:$PATH
export PATH