CentOS 6.9 安装最新版本 git

从 github 上下载最新版的 git 源码

wget 下载最新版

$ wget https://github.com/git/git/archive/v2.19.2.tar.gz

解压

$ tar -zvxf v2.19.2.tar.gz 

安装编译工具与依赖包

$ yum groupinstall "Development Tools"
$ yum install zlib-devel perl-ExtUtils-MakeMaker asciidoc xmlto openssl-devel

编译 git 源码

$ cd git-2.19.2
$ autoconf
$ ./configure
$ make && make install

添加 git 符号链接

$ ls /usr/local/bin
git            gitk              git-shell           git-upload-pack
git-cvsserver  git-receive-pack  git-upload-archive
$ ln -s /usr/local/bin/git /usr/bin
ln: 创建符号链接 "/usr/bin/git": 文件已存在
$ rm /usr/bin/git
ln -s /usr/local/bin/git /usr/bin
$ git --version
v2.19.2

设置 alias 节约生命

$ git config --global alias.st status
$ git config --global alias.co checkout
$ git config --global alias.ci commit
$ git config --global alias.br branch
$ git config --global alias.pl pull
$ git config --global alias.ps push
    原文作者:ybwdaisy
    原文地址: https://segmentfault.com/a/1190000018040687
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞