天天看点

GitLab: Author ‘xxx‘ is not a member of team

重装系统之后git提交代码提示GitLab: Author ‘xxx‘ is not a member of team

重装系统git需要重新下载,需要配置用户名和邮箱

出现Author ‘xxx‘ is not a member of team原因主要有两种情况

一:配置完用户名密码没有和gitlab关联ssh,需要生成密钥(github,gitlab,gitee等生成规则一样) 详情链接:https://www.cnblogs.com/cgy-home/p/12016851.html

二:自己的git账号密码邮箱原来是[email protected]关联有github,gitee等,现在是[email protected]关联的项目在gitLab上,

git config --global user.name "Grant"
git config --global user.email "[email protected]"