CentOS7 で、git 2系 をインストールしてみる | よしにぃのあふぱくブログ

CentOS7 で、git 2系 をインストールしてみる

パッケージやソースコードの管理のソフトである「git」ですが、参考サイトを見てもなかなかうまく行かなかったので、備忘録を記載します。CentOS7環境で試しています。

# git 用のリポジトリを追加
yum install https://repo.ius.io/ius-release-el7.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

# IUSのリポジトリがインストールされたか確認
ll /etc/yum.repos.d/ius*

# 競合で必要なパッケージをインストール
yum install pcre2 libsecret emacs-filesystem perl-TermReadKey perl-Error

#gitパッケージインストール
yum install git –enablerepo=ius –disablerepo=base,epel,extras,updates

これで、最新の git のバージョンをインストールすることができました。

# git –version
git version 2.24.4

参考サイト
https://zenn.dev/shiozumi/articles/06c3c852408e93