1
0

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のinstall方法

  • 依存関係のあるライブラリのインストール
yum install openssl-devel curl-devel expat-devel wget gcc
  • 最新のgitのURL確認

こちら にアクセス。
git-X.XX.X.tar.gz の最新バージョンのリンクをコピー
https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.28.0.tar.gz

無題 - ペイント 2020-08-31 19.18.53 - ペイント 2020-08-31 19.png

  • gitパッケージのダウンロード

# 適切な場所に移動
cd /var/tmp

# gitのファイルをダウンロード
wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.28.0.tar.gz

# ファイルを解答
tar xvzf git-2.28.0.tar.gz

# 移動 
cd git-2.28.0

# インストール
make prefix=/usr/local all
make prefix=/usr/local install
  • バージョン確認
# バージョン確認
$ git --version
git version 2.28.0
1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?