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 "suzie"
3.生成ssh key
ssh-keygen -m rsa -C "your mail" (当前目录) 然后可以命名默认id_rsa 或者id_rsa_second 把对应的pub放到公共服务器上。
4.在.ssh中新建config文件,config文件内容:
Host github
hostname github.com
User lichao2018
IdentityFiLE ~/.ssh/github_rsa
Host code.aliyun.com
hostname code.aliyun.com
User lichao2018
IdentityFiLE ~/.ssh/github_rsa
网友评论