方法一:通过终端执行命令修改
git config --global user.name "username"
git config --global user.email "email"
方法二:找到本地保存了username、email的文件,直接在文件中修改
文件在Mac OS根目录下,文件名称.gitconfig
,由于是隐藏文件,需要把设置隐藏文件显示才可以访问
想让某个文件夹下的隐藏文件显示,只需要执行command shift .
即可
git config --global user.name "username"
git config --global user.email "email"
文件在Mac OS根目录下,文件名称.gitconfig
,由于是隐藏文件,需要把设置隐藏文件显示才可以访问
想让某个文件夹下的隐藏文件显示,只需要执行command shift .
即可
本文标题:修改git本地的username、email
本文链接:https://www.haomeiwen.com/subject/ohtlgltx.html
网友评论