美文网首页
为git项目单独配置用户名和邮箱

为git项目单独配置用户名和邮箱

作者: 放风筝的小小马 | 来源:发表于2018-01-11 22:26 被阅读11次
        1.取消global
        git config --global --unset user.name
        git config --global --unset user.email
    
        2.设置每个项目repo的自己的user.email
        git config  user.email "xxxx@xx.com"
        git config  user.name "xxxx"
    

    相关文章

      网友评论

          本文标题:为git项目单独配置用户名和邮箱

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