码迷,mamicode.com
首页 > 系统相关 > 详细

linux安装git

时间:2018-04-23 22:37:52      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:set   版本   local   home   evel   存在   usr   for   config   

如果存在,删除原来版本:

yum remove git

安装git环境:

yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker

官网下载git的Linux版安装:

地址:https://mirrors.edge.kernel.org/pub/software/scm/git/
解压:tar -xzvf git-2.17.0.tar.gz
cd git-2.17.0
配置:./configure prefix=/usr/local/git/
编译安装:make && make install

添加环境变量:/etc/profile:

#set for git
export GIT_HOME=/usr/local/git
export PATH=$GIT_HOME/bin:$PATH

查看版本:

source /etc/profile
git --version

 

linux安装git

标签:set   版本   local   home   evel   存在   usr   for   config   

原文地址:https://www.cnblogs.com/maoriaty/p/8921941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!