CentOS 中安装和更新 git 客户端工具

Posted itwhite

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 中安装和更新 git 客户端工具相关的知识,希望对你有一定的参考价值。

CentOS 系统中有可能默认未安装 git 工具,也有可能已安装但是版本太低,这时候我们需要安装或升级 git 工具。

1、检查 git 是否已安装

# git --version
-bash: git: command not found  # 情形一: git 未安装
# git --version
git version 1.8.3.1           # 情形二: git 虽然已安装,但是版本很太低

 

2、安装 WANDisco 仓库包

# 如果是 CentOS 6 系统就安装这个吧
yum install http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm

# 如果是 CentOS 7 系统就安装下面两个之一吧
yum install http://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-1.noarch.rpm
# 或者
yum install http://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-2.noarch.rpm

 

3、安装或更新 git 工具

# 如果上面检测到系统中未安装git,则执行:
yum install git

# 如果上面检测到系统中已安装git,并且需要更新,则执行:
yum update git

# 安装完成后检测 git 版本
# git --version
git version 2.22.0

 

参考:https://stackoverflow.com/questions/21820715/how-to-install-latest-version-of-git-on-centos-7-x-6-x

 

完。

以上是关于CentOS 中安装和更新 git 客户端工具的主要内容,如果未能解决你的问题,请参考以下文章

SVN学习——在Eclipse 中安装和使用SVN客户端插件

在CentOS中安装和使用nginx

如何在CentOS 7中安装Git

01 CentOS7中安装和启动solr

如何在Linux中安装和使用Silver Searcher(程序员的代码搜索工具)

如何在 CentOS 系统中安装和配置 nginx 服务? 原创