美文网首页
切换git config后,提交commit信息

切换git config后,提交commit信息

作者: 小哼唧麻 | 来源:发表于2020-11-10 16:30 被阅读0次
    1. git push 的时候 显示 does not match your user account.

    解决
    git commit --amend --reset-author

    1. push的commit节点不能包含merge的节点
      解决方法:git reset 833011(merge节点之前的commitid)
      然后重新git add ,git commit ,git push

    找merge节点前的节点 git log --pretty=oneline --decorate --graph

    相关文章

      网友评论

          本文标题:切换git config后,提交commit信息

          本文链接:https://www.haomeiwen.com/subject/yxujbktx.html