git源码安装

在 CentOS 的默认仓库中有git,所以最简单的方法是:
yum install git
这种方法虽然简单,但是一般仓库里的版本更新不及时,比如 CentOS 仓库中的 git 最新版是1.7.1,但是 git 官方已经到2.x 的版本了。
这时,就不得不动用最终的大杀器了,通过自己编译源码安装。

  1. 需要给 CentOS 下载安装编译工具。
    yum groupinstall Development Tools
  2. 安装一些 git 构建或执行时需要的其他依赖
    yum install zlib-devel perl-ExtUtils-MakeMaker asciidoc xmlto openssl-devel
  3. 下载 git 最新版本的源代码
cd ~
wget -O git.zip https://github.com/git/git/archive/master.zip
unzip git.zip
cd git-master

或者

 git clone https://github.com/git/git
  1. 配置、编译安装
autoconf
./configure
make && make install

ln -s /usr/local/bin/git /usr/bin/
如果系统中已经安装过旧的版本,步骤6可能会报文件已存在的错误,这个时候需要把旧的 link 删掉再重新 link。

  1. 检查git版本
    git --version
  2. 设置全局用户
    git config --global user.name "ghostqn"
    git config --global user.email "[email protected]"
  3. 执行git push时,git2.0版本之后push.default默认值 从 'matching'
    变更为 'simple'
    git config --global push.default matching
    git源码安装_第1张图片
    Paste_Image.png

你可能感兴趣的:(git源码安装)