Skip to main content

源码编绎安装

MacOS

下载源码

  • git
mkdir git
git clone -b v2.34.1 https://github.com/git/git.git ./git
  • wget
wget https://github.com/git/git/archive/refs/tags/v2.34.1.zip
mkdir git
tar -xvf v2.34.1.zip --strip-components 1 -C ./git

编绎安装

cd git
make configure
./configure --prefix=/usr/local
sudo make install