Ask HN: What VCS to use for binary files only?

2 points by BiteCode_dev ↗ HN
I know about git-lfs and mercurial binary files extension, but don't know the pros and cons. Is there something like git, but specialized in binary files?

Apparently SVN could work very well with binary files, but it needs a central server.

3 comments

[ 2.5 ms ] story [ 17.8 ms ] thread
Git works great for binary files. However, it struggles with large repositories (beyond 5 GB). So large files are a problem, and binary files are often large. But the binariness itself is no problem.

(5 GB is github's "recommended" limit. You can push beyond it, but things will get sluggish and it might not work everywhere.)

git-lfs is clunky and awkward, but may still be the best solution for large files.

if you're feeling adventurous, bitkeeper (https://bitkeeper.org) handles binaries well. It's no longer supported by a company, but it's open source.