this post was submitted on 22 May 2024
70 points (96.1% liked)

Science Memes

10671 readers
3132 users here now

Welcome to c/science_memes @ Mander.xyz!

A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.


Research Committee

Other Mander Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] ryannathans@aussie.zone 0 points 4 months ago (1 children)

Don't put binary files in git

[–] IrritableOcelot@beehaw.org 2 points 4 months ago (1 children)

What's the issue with binaries in git? Just that diff'ing binary files is useless?

[–] ryannathans@aussie.zone 2 points 4 months ago* (last edited 4 months ago) (1 children)

They are generally large, uncompressable and replaced instead of updated like text files. All files stay in the repo history forever, they make repos big and slow compared to text files with no advantages provided (e.g. as you said, diffing etc is useless).

If a binary file needs to be stored in git, it's usually more appropriate to use git LFS for that file. Git LFS stores the binary outside of the repo in the same way that database engines store binary outside of the respective table.

In this case, it would be much smarter to use version control on the text in the document, not tte binary file, which is a feature of essentially every document writer program.

[–] IrritableOcelot@beehaw.org 2 points 4 months ago

Cool! Good to know.