CentOS7 升级 Git 到最新版

来源:互联网 发布:大连品牌网络推广公司 编辑:程序博客网 时间:2024/06/16 19:26
$ lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch
Distributor ID:    CentOS
Description:    CentOS Linux release 7.4.1708 (Core)
Release:    7.4.1708

Codename:    Core


$ git version

git version 1.8.3.1

$ git clone https://github.com/iuscommunity/automation-examples$ cd automation-examples/$ git checkout bash$ sudo ./enable-ius.sh$ sudo yum swap git git2u
$ git version
git version 2.14.2

参考: https://git-scm.com/download/linux


添加自动补全:

git clone https://github.com/markgandolfo/git-bash-completion.gitcp `find . -name "git-completion.bash"` ~/.git-completion.bashsource ~/.git-completion.bashecho "source ~/.git-completion.bash" >> ~/.bashrc

或直接用一行命令来添加自动补全:

sudo wget --no-check-certificate -P /etc/bash_completion.d/ https://raw.githubusercontent.com/markgandolfo/git-bash-completion/master/git-completion.bash&&source /etc/bash_completion.d/git-completion.bash






原创粉丝点击