💭
Xserveに git の最新版(2.46.0.rc1)をインストールする。
最初に gettext をインストールする。
wget https://ftp.gnu.org/pub/gnu/gettext/gettext-0.22.5.tar.gz
tar xvf gettext-0.22.5.tar.gz
cd gettext-0.22.5
./configure --prefix=$HOME/local CFLAGS="-std=gnu99" CXXFLAGS="-std=gnu++03"
make
make install
次に git をインストールする。
git clone https://github.com/git/git.git
cd git
./configure --prefix=$HOME/local CFLAGS="-std=gnu99" CXXFLAGS="-std=gnu++03"
make all
make install
.bashrc に PATH を追加する。
export PATH=$HOME/local/bin:$PATH
Discussion