• qjkxbmwvz@startrek.website
      link
      fedilink
      English
      arrow-up
      16
      ·
      1 month 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.

    • MinekPo1 [She/Her]@lemmygrad.ml
      link
      fedilink
      English
      arrow-up
      4
      ·
      1 month ago

      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

      • ryannathans@aussie.zone
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        1 month 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 (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.