Git 常用命令(九)—— git revert 反做 commit

  git 常用命令系列随笔会记录一些用到的常见命令,这里记录一下git revert 反做某个版本

一、适用场景:

  如果我们想改动之前某个 commit 的提交内容,但是又想保留此 commit 之后的 commit。

二、具体操作:

  1、反做

1
git revert -n 版本号(..版本号)

  2、提交

1
2
3
git add .
git commit -m 'commit message'
git push origin develop
以上

随笔标题:Git 常用命令(九)—— git revert 反做 commit

随笔作者:刘先玉

发布时间:2018年10月19日 - 11:10:31

最后更新:2020年05月06日 - 21:10:31

原文链接:https://liuxianyu.cn/article/git-order-i.html