要解决git提交的用户名跟账户不一致的问题,可以按照以下步骤进行操作:
git config user.name
git config user.email
git config --global user.name "Your Name"
git config --global user.email "your_email@example.com"
确保将命令中的 “Your Name” 和 “your_email@example.com” 替换为你自己的用户名和邮箱。
git commit --amend --author="Your Name <your_email@example.com>"
同样,将命令中的 “Your Name” 和 “your_email@example.com” 替换为你自己的用户名和邮箱。
git push --force
注意,使用 git push --force
命令会覆盖远程仓库的提交记录,谨慎使用。
完成以上步骤后,再次查看git的用户名和邮箱配置,应该与你想要的一致了。