25
all 9 comments
sorted by: hot top controversial new old
[-] eluvatar@programming.dev 22 points 10 months ago

I don't get why they have so many generated files checked in. Like changing that seems like a no brainer. If they can be generated then just gitignore them and call it a day.

[-] UlrikHD@programming.dev 6 points 10 months ago

This honestly feels like it's presented by someone with Stockholm syndrome. What major advantage is there over having multiple, more manageable repos? From the blog, it sounds like it's just extra challenges and more complicated on-boarding.

[-] sip@programming.dev 3 points 10 months ago

versioning and version dependencies are more manageable.

idk why aren't they using git clone --filter to clone a part of the repo and/or git sparse-checkout or at least git status . while in the subdir you are doing your work. what's the point of doing git status on the whole thing if you're working in a dir?

[-] cbarrick@lemmy.world 6 points 10 months ago

They talk about checking in generated files, but they also talk about using Bazel as the build system.

They're holding it wrong.

Just define a BUILD target to generate the files. Don't check them in. Any other target that depends on the generated files can depend on the target that generated them rather than depending on the files directly.

My guess is that they haven't fully embraced Bazel, so there must be parts of the CI/CD that are not defined as Bazel targets that also need these files...

[-] lysdexic@programming.dev 5 points 10 months ago* (last edited 10 months ago)

They’re holding it wrong.

That's a naive take. These are no random autogenerated files. These are translation files. Even in the smoothest-running build systems and CICD pipelines, these can and often go wrong, because there is still an important human factor in generating translations. A regression hitting localization data means your whole system can become unusable for a whole portion of your userbase without having a good way to detect, track, and even monitor your apps.

Checking these files into the build system is the only reliable way to track changes in translation and accessibility data, and pinpoint regressions.

Source: I've worked for a company who had an internal translation service which by design required no human interaction and should only be integrated as a post-build step, and that system failed often and catastrophically. The only surefire way of tracking the mess it made was to commit those files and trwck changes per commit as part of pull requests.

[-] psukys@feddit.de 2 points 10 months ago

yeah feels like git's being crammed as some kind of deployed prod tool and too afraid to move away from it

[-] sabreW4K3@lemmy.tf -2 points 10 months ago

Sounds like the kinda stupid and time consuming that Mozilla is into

this post was submitted on 28 Aug 2023
25 points (100.0% liked)

Git

2632 readers
7 users here now

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Resources

Rules

  1. Follow programming.dev rules
  2. Be excellent to each other, no hostility towards users for any reason
  3. No spam of tools/companies/advertisements. It’s OK to post your own stuff part of the time, but the primary use of the community should not be self-promotion.

Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.

founded 1 year ago
MODERATORS