首页 > 代码库 > Git 安装

Git 安装

[root@localhost ~]# yum install -y epel-release[root@localhost ~]# yum install -y git[root@localhost ~]# git config --global user.name "panzekai"              # 设置用户名,以便提交代码的时候让其他客户端知道是谁提交了代码[root@localhost ~]# git config --global user.email "1210640219@qq.com"    # 设置邮箱,方便联系

 

 

 

 

    

Git 安装