首先从https://git-scm.com/downloads官网下载git最新版本
-
解压文件,如果文件是
xz
格式压缩则要下载xz解压工具:# yum install xz # xz -d git.xxx.xz //会把文件解压成tar # tar xvf git.xx.tar
-
进行安装
# cd git-xxx # ./configure # make & make install
出现错误缺少GCC,yum 安装gcc
缺少zlib.h,则在从http://www.zlib.net/下载zlib最新版:zlib-1.2.8.tar.gz,同样通过configure make make install
安装,再重复上面的步骤
使用过程种出现问题
fatal: Unable to find remote helper for 'https'
重新编译安装
$ yum install curl-devel
$ # cd to wherever the source for git is
$ cd /usr/local/src/git-1.7.9
$ ./configure
$ make
$ make install