CentOS7 升级 Git 到最新版

转自:https://blog.csdn.net/jaket5219999/article/details/78398916

$ 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.git 
>>cp `find . -name "git-completion.bash"` ~/.git-completion.bash 

>>source ~/.git-completion.bash 

>>echo "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 

你可能感兴趣的:(study)