Skip to content

Instantly share code, notes, and snippets.

@j-iNFINITE
Last active September 11, 2016 14:54
Show Gist options
  • Save j-iNFINITE/18e9629816b6cd030a4640cd465435bc to your computer and use it in GitHub Desktop.
Save j-iNFINITE/18e9629816b6cd030a4640cd465435bc to your computer and use it in GitHub Desktop.
git相关
1、安装依赖
[root@test ~]# yum install -y perl-ExtUtils-MakeMaker package
2、卸载系统原有git
[root@test ~]# rpm -e git
3、下载git源码包
[root@test ~]# wget https://www.kernel.org/pub/software/scm/git/git-2.0.0.tar.gz
4、安装git
[root@test ~]# tar xf git-2.0.0.tar.gz
[root@test tools]# cd git-2.0.0
[root@test git-2.0.0]# ./configure
[root@test git-2.0.0]# make
[root@test git-2.0.0]# make install
export PATH=$PATH:/usr/local/git/bin
git rm --cached xxx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment