美文网首页
git 安装与基本配置(mac上)

git 安装与基本配置(mac上)

作者: gis杭州 | 来源:发表于2018-09-14 17:17 被阅读0次

    1 官网下载安装
    https://git-scm.com/download

    2 配置好名称和邮件信息

    git config --global user.name "your_name"  
    git config --global user.email "your_email@gmail.com"
    

    配置完成后 git config --list 查看信息,即可看到配置了用户名、邮箱信息

    参考
    https://blog.csdn.net/xiaohanluo/article/details/53214933

    相关文章

      网友评论

          本文标题:git 安装与基本配置(mac上)

          本文链接:https://www.haomeiwen.com/subject/imaogftx.html