(no title)
CJefferson | 1 month ago
I've had failures while git bisecting, hitting commits that clearly never compiled, because I'm probably the first person to ever check them out.
CJefferson | 1 month ago
I've had failures while git bisecting, hitting commits that clearly never compiled, because I'm probably the first person to ever check them out.
Marsymars|1 month ago
e.g. I'm currently working on a substantial framework upgrade to a project - I've pulled every dependency/blocker out that could be done on its own and made separate PRs for them, but I'm still left with a number of logically independent commits that by their nature will not compile on their own. I could squash e.g. "Update core framework", "Fix for new syntax rules" and "Update to async methods without locking", but I don't know that reviewers and future code readers are better served by that.
wonger_|1 month ago
Where you have two repositories, one "polished" where every commit always passes, and another for messier dev history.
capitainenemo|1 month ago