LoginSignup
1
2

More than 5 years have passed since last update.

GitをMac上でコンパイルする方法

Last updated at Posted at 2013-09-30

GitHubからクローン。


git clone https://github.com/git/git.git

いきなり./configureとかしてもconfigureを作成出来ない。
gitディレクトリ内のINSTALLに書いてあるのだけど、まずautoconfをインストールします。

brew install autoconf

configureを作成、makeでコンパイル。

make configure
make

コンパイルされているかの確認。

./git --version
git version 1.8.4.474.g128a96c
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2