首页 > 其他 > 详细

Git Installation

时间:2019-10-15 16:14:10      阅读:77      评论:0      收藏:0      [点我收藏+]

Git

Installation

Linux

https://mirrors.edge.kernel.org/pub/software/scm/git/
https://mirror.bjtu.edu.cn/kernel/software/scm/git/
http://mirrors.cqu.edu.cn/kernel/software/scm/git/
http://ftp.jaist.ac.jp/pub/Linux/kernel.org/software/scm/git/
sudo yum install dh-autoreconf curl-devel expat-devel gettext-devel   openssl-devel perl-devel zlib-devel autoconf gcc -y
curl -O https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.23.0.tar.gz
tar -zvxf git-2.23.0.tar.gz
cd git-2.23.0/
./configure --prefix=/usr/local
make configure
make all
sudo make install
cd ../
rm -rvf git-2.23.0/
sudo yum install dh-autoreconf curl-devel expat-devel gettext-devel   openssl-devel perl-devel zlib-devel autoconf gcc -y
curl -O http://ftp.jaist.ac.jp/pub/Linux/kernel.org/software/scm/git/git-2.23.0.tar.gz
tar -zvxf git-2.23.0.tar.gz
cd git-2.23.0/
./configure --prefix=/usr/local
make configure
make all
sudo make install
cd ../
rm -rvf git-2.23.0/

Git Installation

原文:https://www.cnblogs.com/acmeryblog/p/11678260.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!