从源码安装git

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从源码安装git相关的知识,希望对你有一定的参考价值。

蛋疼的阿里云,git版本居然才1.9.只能手动安装了.

  • 预装

apt-get update

apt-get --yes install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev

apt-get --yes install autoconf

  • git源码列表

https://www.kernel.org/pub/software/scm/git/

  • 选一个最新的:

wget https://www.kernel.org/pub/software/scm/git/git-2.7.2.tar.gz

tar -xzf git-2.7.2.tar.gz

cd git-2.7.2

make configure && ./configure --prefix=/usr && make && make install

  • 搞定

 

以上是关于从源码安装git的主要内容,如果未能解决你的问题,请参考以下文章

如何从github上面拷贝源码

如何从visual studio代码(拉/推)访问git gist?

从源码安装git

git安装及使用简介

linux平台从源码安装git

利用git从github上下源码需要联网吗