美文网首页
【Git】修改已经提交的备注信息

【Git】修改已经提交的备注信息

作者: 盐果儿 | 来源:发表于2022-10-03 01:52 被阅读0次

    1. 进入上次提交的记录

    git commit --amend

    2. 找到上次提交的备注,按 i 进入编辑模式,修改为想要的备注,按 ESC退出编辑模式,按 :wq! 保存并退出。

    git push origin [branchName]

    遇到问题:

    1. 命令:

    git push origin [branchName]

    报错:

    2. 命令:

    git pull origin [branchName]

    报错:

    3. 命令:

    git config pull.rebase true

    4. 命令:

    git add [changedFile]

    git commit -m [message]

    5. 命令:

    git pull origin befl

    报错:

    6. 命令:

    git cherry-pick 8371f36

    提示:

    7. 命令:

    git cherry-pick --continue

    8. 命令:

    git push origin [branchName]

    Reference:

    https://blog.csdn.net/weixin_43544093/article/details/122957123

    相关文章

      网友评论

          本文标题:【Git】修改已经提交的备注信息

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