当git配置了不同的远程库而且邮箱不一致时
Posted cristiano-duan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当git配置了不同的远程库而且邮箱不一致时相关的知识,希望对你有一定的参考价值。
常用的远程库比如github,可以将邮箱和用户名配置为global
git config --global user.email "cristiano@163.com"
git config --global user.name "cristiao"
其他远程库比如gitlab,针对每个clone的本地库,将邮箱和用户名设置位local
git config --local user.email "xxxxxx@163.com"
git config --local user.name "xxxxxx"
以上是关于当git配置了不同的远程库而且邮箱不一致时的主要内容,如果未能解决你的问题,请参考以下文章