LoginSignup
1
2

More than 3 years have passed since last update.

git 最新版インストール

Posted at
  • curl コマンドで master.zip を取得失敗した場合のケース
# 旧バージョン インストール 
yum install git

# 最新版ダウンロード( git clone )
git clone https://github.com/git/git.git

# 旧バージョン アンインストール
yum remove git

# 必要ライブラリ インストール
yum -y install gcc gcc-devel
yum -y install openssl-devel
yum -y install libcurl-devel
yum -y install expat-devel

# git install
make prefix=/usr
make prefix=/usr install
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