一、查看当前登录账号 与登录邮箱是否正确
git config user.name
git config user.email
// 若不正确则切换:切换自己账号与邮箱
git config --global user.name "你的用户名"
git config --global user.email "你的邮箱"
二、查看凭证管理器中保存了的Git账号信息是不是自己的,如果不是删除
参考:https://blog.csdn.net/m0_49509652/article/details/119207444