CentOS 7 安装配置git

前端之家收集整理的这篇文章主要介绍了CentOS 7 安装配置git前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. 安装
    yum install git
  2. 验证
    [root@localhost ~]# git --version
    git version 1.8.3.1
    [root@localhost ~]#
  3. 配置基本信息
    //配置基本信息
    [root@localhost ~]# git config --global user.name "flymegoc"
    [root@localhost ~]# git config --global user.email 343672271@qq.com
    //查看配置
    [root@localhost ~]# git config --list
    user.name=flymegoc
    user.email=343672271@qq.com
    [root@localhost ~]#
原文链接:https://www.f2er.com/centos/377918.html

猜你在找的CentOS相关文章