标签: git atlassian-sourcetree git-flow
我做了"完成功能"在错误的git流程中(不删除),可以反转吗?
答案 0 :(得分:0)
使用git log查找历史记录,并在两个分支上合并之前复制上次提交的哈希值。
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