设置全局名字与邮箱(上级分配的gitlab账号)没有作用,上传代码后显示还是前同事提交的记录。
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
需把--global去掉,就是下方代码
git config user.name "John Doe"
git config user.email johndoe@example.com
设置全局名字与邮箱(上级分配的gitlab账号)没有作用,上传代码后显示还是前同事提交的记录。
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
需把--global去掉,就是下方代码
git config user.name "John Doe"
git config user.email johndoe@example.com
本文标题:mac上gitlab提交代码一直是前同事的记录
本文链接:https://www.haomeiwen.com/subject/ixrdectx.html
网友评论