3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Gitをソースからコンパイルしてインストールする。

Posted at

Gitをユーザーのディレクトリにソースからコンパイルしてインストールする。
だいたいhttps://github.com/git/git/blob/master/INSTALL の記述通り。
私の環境ではexpat辺りやdocのコンパイルでエラーが起きたので、
Alternativeな方法でインストールした。

terminal
# ソースのダウンロード
$ curl -LO https://github.com/git/git/archive/v2.26.0.tar.gz

# 展開して展開先に移動
$ tar -xvf v2.26.0.tar.gz
$ cd git-2.26.0/

# configureファイルを作成して、configureする。インストール先は展開したディレクトリ
$ make configure
$ ./configure --prefix=$(pwd)

# makeしてinstall
$ make all
$ make install

# installしたgitのversion確認。
$ bin/git --version
git version 2.26.0

参考:
https://qiita.com/347lionz/items/a18c5b11df45a7c2e67d 

3
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?