I'm not your competitor, but I am trying to make software metrics a good thing for everybody (developers and leaders) and I'm not sure you can make a claim like the following on your landing page: "Know your star developers." with the limited analytics that you can gather from a pull request.
Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
31–40 of 59 posts
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#32Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#33How does this compare to Bors NG? https://github.com/bors-ng/bors-ng
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#34How does it compare to GitLab's merge train feature?
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#35A previous employer that underwent a massive multi-billon dollar migration to SOA (and then folks went too far and made everything a micro-service so had to rollup some work) basically because merging became too slow into our monorail as we got to ~O(1k) engineers. We had an in-house solution like this that we used for 2-3 years (and a worse version for years before that). What a great idea to productive it! IMO the…
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#36Really dumb question while I'm trying to decide whether to use something like git vs. CRDTs to handle version control for user changes made in an app I'm working on: why do we even use git anymore for source code version control if we want behavior like this? Nobody likes merge conflicts. We all want versioning. So long as we have versions at all why isn't the ideal interface for developing in teams something more li…
There are certainly usability issues with git but I wouldn't literally use Google docs with colored squiggly lines for the changes from Anne and Bob...
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#37Really dumb question while I'm trying to decide whether to use something like git vs. CRDTs to handle version control for user changes made in an app I'm working on: why do we even use git anymore for source code version control if we want behavior like this? Nobody likes merge conflicts. We all want versioning. So long as we have versions at all why isn't the ideal interface for developing in teams something more li…
On the contrary, I for one am amazed how often no intervention is necessary on automatic merges, given how finnicky compilers are in general! If the teams are not ridiculously large and people mostly work on their own stuff and coordinate work on the "common" part, isn't it mostly good? There are certainly usability issues with git but I wouldn't literally use Google docs with colored squiggly lines for the changes f…
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#38How does this compare to Bors NG? https://github.com/bors-ng/bors-ng
This was my question too. I considered making a company out of Bors but didn’t think it would work because Bors mostly just works.
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#39Earlier quoted context omitted.
<3 curious where have you experience this the most? We are also trying to figure out at what point does the problem become acute.
Here’s one. I currently have about five or six small PRs open for bug fixes and minor features. However, they’ve languished a bit in review and haven’t been merged yet. In the meantime, I’ve started a fairly significant refactor. It’s not too complicated but involves moving files and changing some core structures. I am dreading having to rebase those open PRs!
Re: Launch HN: MergeQueue (YC S21) – Automate rebasing and merging for your codebase
#40Earlier quoted context omitted.
If we need merge conflicts that must be manually resolved, how can this product being discussed exist? If merge conflicts can be automatically resolved, why aren't we using a system that does operates like that under the hood rather than needing a product like this bolted on?
There are ways to resolve merge conflicts automatically in some cases given some assumptions, but there is no way to resolve any given merge conflict without a system that can create a correct program. I won't bore you with the formal proof for this (especially since I have no idea how to construct such a proof). Consider that some merge conflicts require new code to be written to resolve them. For example, here's an…
Every person who is to check-in code is to first stash their changes, pull all code, then pop the stash and deal with any conflicts locally, do the relevant testing, then check-in. The entire repo is checkin 1 -> checkin 2 -> checkin 3 -> etc..
When viewed in this light it is no different than if you had pulled the baz() code before you started editing anything. Would you have changed it to bar() or not?