Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Nice doc! Thanks.
llvm/docs/GitBisecting.rst | ||
---|---|---|
99 | Why does it confuse git bisect? I would expect your run script to try ninja -C ../llvm-build-project clang || exit 125 and just skip the revisions? | |
109 | Using directory filtering to drive the bisection and skip unrelated revisions seems like a good general recommendation independently of MLIR or merges. | |
119 | Seems like it answers my previous question (should this explanation be moved there?). The part about git being confused about directories appearing and disappearing is a bit strange: surely there are many directories that will appear and disappear during the bisection? |
Thanks for the review, and sorry about dragging my feet -- my llvm repo was busy most of last week doing bisects :P
llvm/docs/GitBisecting.rst | ||
---|---|---|
99 | I tried to reproduce the confused git bisect, but I only managed to do it if I hit ctrl-c during a bisect step. Let me replace this with a "don't hit ctrl-c while a bisect is running". | |
119 | See above. I'll remove this paragraph. |
Why does it confuse git bisect? I would expect your run script to try ninja -C ../llvm-build-project clang || exit 125 and just skip the revisions?