sourcetree:你可以反转"完成功能"?

时间:2017-04-19 21:26:16

标签: git atlassian-sourcetree git-flow

我做了"完成功能"在错误的git流程中(不删除),可以反转吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

使用git log查找历史记录,并在两个分支上合并之前复制上次提交的哈希值。

git checkout develop
git checkout -b feature
git reset <hash of feature commit before merge> --hard
git checkout develop
git reset <hash of develop commit before merge> --hard