M1 Mac安装git

M1 Mac安装git

    • 从官网下载
      • 需要先安装homebrew
      • 安装git

从官网下载

只是看下大致流程,官方镜像根本无法下载,看下面的吧
git官网下载链接

需要先安装homebrew

官方镜像完全不行,用下面的这个,直接在终端输入就行
来自知乎大佬

/bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"

然后配置环境变量

echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

安装git

brew install git

等就完事了,然后环境变量自动配好的

你可能感兴趣的:(M1,Mac相关,macos,git)