如何在Linux系统(CentOS7.x)上安装Git
# 默认安装
在Linux上是有yum安装Git,非常简单,只需要一行命令
yum -y install git
1
输入:
git --version
1
查看Git是否安装完成以及查看其版本号
# 升级 git 版本
先去官网看看 Download for Linux and Unix:https://git-scm.com/download/linux (opens new window)
RHEL and derivatives typically ship older versions of git. You can download a tarball and build from source, or use a 3rd-party repository such as the [IUS Community Project](https://ius.io/) to obtain a more recent version of git.
1
RHEL 和衍生通常提供较老版本的 git。您可以下载 tarball 并从源代码构建,或者使用第三方存储库,如 IUS Community Project (opens new window) 来获得最新版本的 git。
# 使用WANdisco(推荐)
另一个源:WANdisco Replication Binaries (opens new window)
sudo vi /etc/yum.repos.d/wandisco-git.repo
1
wandisco-git.repo
[wandisco-git]
name=Wandisco GIT Repository
baseurl=http://opensource.wandisco.com/centos/7/git/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
1
2
3
4
5
6
2
3
4
5
6
Import the repository GPG keys with:
sudo rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
1
sudo yum remove git
sudo yum install git
git --version
1
2
3
2
3
# 使用 IUS
RHEL/CentOS 7
yum install \
https://repo.ius.io/ius-release-el7.rpm \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
1
2
3
2
3
安装新版 git:
ius 通常会在高版本的软件名后面 + u
yum list git
1
如果你已经装有低版本的 git,你需要先 remove(否则安装的时候会报错)
yum remove git
1
安装 2.0 以上版本的 git
yum install git2u
1
上次更新: 2024/01/30, 00:35:17
- 01
- Node与GLIBC_2.27不兼容解决方案08-19
- 02
- Git清空本地文件跟踪缓存08-13