- git push 的时候 显示 does not match your user account.
解决
git commit --amend --reset-author
- push的commit节点不能包含merge的节点
解决方法:git reset 833011(merge节点之前的commitid)
然后重新git add ,git commit ,git push
找merge节点前的节点 git log --pretty=oneline --decorate --graph
解决
git commit --amend --reset-author
找merge节点前的节点 git log --pretty=oneline --decorate --graph
本文标题:切换git config后,提交commit信息
本文链接:https://www.haomeiwen.com/subject/yxujbktx.html
网友评论