有时在本地remote pull push代码的时候,需要操作不同的Git的帐号,所以可以通过以下方法切换不同的Git帐号:
一、取消global
git config --global --unset user.name git config --global --unset user.email
一、设置每个项目repo的自己的user.email
git config user.email "[email protected]" git config user.name "suzie"
这样,就可以用不同的git帐号对项目进行pull push了。
原创文章,转载请注明:转载自Web开发笔记 | Git多帐号操作
本文链接地址:https://www.magentonotes.com/git-set-multiple-account.html
Comments on this entry are closed.