CentOS7 yum 安装git

查看系统是否已经安装git

git --version

yum安装git

yum install -y git

安装成功

[root@localhost bin]# git --version
git version 1.8.3.1

卸载git

yum remove git

参考:

https://www.cnblogs.com/liaojie970/p/6253404.html

原文地址:https://www.cnblogs.com/sea-stream/p/10391428.html