系统自带的 Git 版本太低,用 yum 或者 apt 安装的版本又不是更新的版本。
所以需要添加库去指定安装。
Centos7
使用管理员权限,启用 Wandisco GIT 存储库,跟踪一下代码 & 指令:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
sudo vim /etc/yum.repos.d/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 # 导入存储库GPG密钥 sudo rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco # 安装 sudo yum install git # 验证 git --version ## 可以了解 ## # 验证配置文件更改 git config --list # 配置设置存储在~/.gitconfig文件中 [user] name = Your Name email = youremail@yourdomain.com # 可以使用git config命令或者~/.gitconfig手动编辑文件 |
Ubuntu
使用管理员权限,添加 apt 源,跟踪一下代码 & 指令:
1 2 3 4 5 6 7 8 |
# 添加源 sudo add-apt-repository ppa:git-core/ppa # 更新一下源列表 sudo apt-get update # 安装Git sudo apt-get install git |