SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

CentOS7でgitのバージョンを上げる

問題

centos7でgitをインストールすると古いですよね?新しいのはどうやってインストールするとよいですか?

yum install git

→ 1.8.3

答え

wandiscoが提供しているものが使えた。

例) http://opensource.wandisco.com/centos/7/git/x86_64/

ファイル編集でリポジトリを追加。

/etc/yum.repos.d/wandisco.repo

[wandisco-git]
name=WANdisco Distribution of git
baseurl=http://opensource.wandisco.com/centos/7/git/$basearch
enabled=0
gpgcheck=1

GPGキー追加。

rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco

インストール実行

確認

$ git --version
git version 2.31.1

関連するメモ

コメント