美文网首页
【转载】git修改之前某一个特定的commit

【转载】git修改之前某一个特定的commit

作者: running_sheep | 来源:发表于2021-08-20 09:18 被阅读0次

    转自:https://www.jianshu.com/p/96ed16586a86
    假如之前的某个提交的上一笔commit id是:928fc8a3686bf5fcf4527873e075703a9998c127

    git log #查看commit id 找到上一笔commit id
    git rebase 928fc8a3686bf5fcf4527873e075703a9998c127 --interactive
    

    然后在vi中修改pick为edit,wq保存退出,接着进行内容修改,git add后git commit --amend
    最后git rebase --continue即可再次回到最新的头部

    相关文章

      网友评论

          本文标题:【转载】git修改之前某一个特定的commit

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