centos git 最新版本 CentOS 最新版本git的安装教程
人气:0想了解CentOS 最新版本git的安装教程的相关内容吗,在本文为您仔细讲解centos git 最新版本的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:centos,git,最新版本,centos,安装最新git,下面大家一起来学习吧。
CentOS6.5自带的git版本是1.7.1
卸载自带的git
# yum remove git
下载最新版git
# wget https://github.com/git/git/archive/v2.9.2.tar.gz
解压
# tar zxvf v2.9.2.tar.gz # cd git-2.9.2
编译安装
# make configure # ./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv # make all doc # sudo make install install-doc install-html
修改环境变量
# sudo vim /etc/profile
在最后一行添加
export PATH=/usr/local/git/bin:$PATH
保存后使其立即生效
# source /etc/profile
查看是否安装成功
#git --version
在pycharm中修改git指向
File->Settings->Version Control->Git->Path to Git executable:
选择/usr/local/git/bin/git
以上所述是小编给大家介绍的CentOS 最新版本git的安装教程,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
加载全部内容