git回滚合并

回滚合并

  1. 切换到需要回滚的分支
    git checkout test
  2. 找到合并生成的ID,回滚
    git revert b595a708 -m 1
  3. 提交
    git commit

你可能感兴趣的:(git)