Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
前段时间我使用 git bisect 来识别一个错误的提交,我设法做到了。然后我关闭了 git bisect “会话” git bisect reset。但是,我识别提交是好还是坏的过程相当复杂,我可能犯了一个错误。
git bisect reset
我的问题是我是否可以“重新加载”关闭的 git bisect 会话以手动重新测试我在此过程中评估的提交的好/坏状态。谢谢你的帮助。
不,没有内置的自动“平分历史”。
您可以运行git bisect log将当前会话的进度存储到文件中,然后用于git bisect replay重新运行上一个会话,直到日志中的点。
git bisect log
git bisect replay