美文网首页
修改git本地的username、email

修改git本地的username、email

作者: 沈正方 | 来源:发表于2021-09-15 16:16 被阅读0次

    方法一:通过终端执行命令修改

    git config --global user.name "username"
    
    git config --global user.email "email"
    

    方法二:找到本地保存了username、email的文件,直接在文件中修改

    文件在Mac OS根目录下,文件名称.gitconfig,由于是隐藏文件,需要把设置隐藏文件显示才可以访问

    想让某个文件夹下的隐藏文件显示,只需要执行command shift .即可

    相关文章

      网友评论

          本文标题:修改git本地的username、email

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