TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Find a needle in a haystack with Git bisect

39 点作者 orr946 个月前

3 条评论

lang4d6 个月前
`git bisect run ...` Has been really nice for me when trying to find which which commit broke long running commands. It'll run atomically using the return code for good/bad determination.
评论 #42157008 未加载
extraduder_ire6 个月前
I remember learning about this a few years ago, and it felt like both a very obvious feature to have and a superpower at the same time.<p>Just a few easy steps between &quot;I can test for this bug and don&#x27;t know where it is in hundreds of thousands of lines&quot; and &quot;Here&#x27;s the three line change that created the bug and context about them&quot;.
strangelove0266 个月前
Pretty cool. Knew this existed but not really how it is a solution.