both Microsoft office and open/libre office files are zip files containing mostly XML so its not that bad actually , as long as you expose the files inside to git
Comment on LPT Do it.
ryannathans@aussie.zone 5 months ago
Don’t put binary files in git
MinekPo1@lemmygrad.ml 5 months ago
IrritableOcelot@beehaw.org 5 months ago
What’s the issue with binaries in git? Just that diff’ing binary files is useless?
ryannathans@aussie.zone 5 months ago
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.
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.
IrritableOcelot@beehaw.org 5 months ago
Cool! Good to know.
qjkxbmwvz@startrek.website 5 months ago
It’s not ideal, but for a thesis — which ideally has an end date after which it won’t be used — it’s not a huge problem I’d argue.