I used CVS and ClearCase before moving into Git, and it took me some time to adjust to the fact that the cost of branching in Git is much much less than ClearCase. And getting into the “distributed” mindset didn’t happen overnight.

  • magic_lobster_party@kbin.run
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    1 month ago

    I guess it’s dependent on project, but IMO if a commit is important enough to be in the main branch, then that should have its own merge request. I like it when all commits in the main branch have gone through all the build pipelines and verification processes.

    But if having separate MRs is undesirable, then you could always overrule the squash policy. I know it’s possible on Gitlab at least.

    • expr@programming.dev
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      1 month ago

      Commits should be reasonably small, logical, and atomic. MRs represent a larger body of work than a commit in many cases. My average number of (intentionally crafted) commits is like 3-5 in an MR. I do not want these commits squashed. If they should be squashed, I would have done so before making the MR.

      People should actually just give a damn and craft a quality history for their MRs. It makes reviewing way easier, makes stuff like git blame and git bisect way more useful, makes it possible to actually make targeted revert commits if necessary, makes cherry picking a lot more useful, and so much more.

      Merge squashing everything is just a shitty band-aid on poor commit hygiene. You just get a history of huge, inscrutable commits and actively make it harder for people to understand the history of the repo.

      • magic_lobster_party@kbin.run
        link
        fedilink
        arrow-up
        1
        ·
        1 month ago

        Well the MRs in the teams I’ve been working in have been small and mostly atomic. They’re focused on solving only one thing.

        The team I’m currently working now in was bad at this before and often bundled way too many things in a single MR. It lead to overly long review processes and was error prone. It was too tough for the reviewer to get an understanding of what was going on.

        Since we made the habit to make smaller MRs we have had much less of those issues.

        • expr@programming.dev
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          1 month ago

          If the MR is anything bigger than a completely trivial change in a file or 2, it most likely should be broken into multiple commits.

          A feature is not atomic. It has many parts that comprise the whole.

            • Dark Arc@social.packetloss.gg
              link
              fedilink
              English
              arrow-up
              1
              ·
              1 month ago

              That’s excessively bureaucratic to the point of being useless in most cases.

              Hard and fast rules are generally bad and “squash everything” is pretty much a by definition hard and fast rule with the result being “I’m just not going to care that much about my commit messages.”

              • magic_lobster_party@kbin.run
                link
                fedilink
                arrow-up
                1
                arrow-down
                1
                ·
                1 month ago

                What are you on? Non-descriptive commit messages has never been any of our problems. All our commits that are pushed to the main branch are well written with clear issues linked to them.