安装git可有效的帮你管理你的项目,为了项目的同步,安装git是很有必要的。
Git是一个开源的分布式版本控制系统,可以有效、高速的处理从很小到非常大的项目版本管理。而国外的GitHub和国内的gitee都是项目的托管平台。但是在使用Git工具的时候,第一步要学会如何安装git,本教程就手把手教大家如何手动编译安装git,并把git克隆到项目中来。
1、介绍
使用gitee管理项目,上面要求使用的git版本为1.8.0以上,而很多yum源上自动安装的git版本为1.7,所以需要掌握手动编译安装git方法。
2、安装git依赖包
[root@localhost]# yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker
3、删除已有的git
[root@localhost]yum remove git
4、下载git源码
切换到你的包文件存放目录下
[root@localhost]cd /usr/src
下载git安装包
[root@localhost src]#wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.8.3.tar.gz
解压git安装包
[root@localhost src]#tar -zxvf git-2.8.3.tar.gz
[root@localhost src]#cd git-2.8.3
配置git安装路径
[root@localhost git-2.8.3]#./configure prefix=/usr/local/git/
编译并且安装
[root@localhost git-2.8.3]#make && make install
检查是否安装成功,查看git版本号
[root@localhost git-2.8.3]#git --version
git已经安装完毕
5、将git指令添加到bash中
[root@localhost git-2.8.3]#vi /etc/profile
在最后一行加入
export PATH=$PATH:/usr/local/git/bin
让该配置文件立即生效
[root@localhost git-2.8.3]#source /etc/profile
6、将tpframe克隆到你的项目
[root@localhost git-2.8.3]git clone https://gitee.com/37duman/tpframe.git /home/www
等待下载完成即可,其中/home/www就是你项目的根目录