Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

For binary files should I use bfiles or bigfiles?

There are a few mercurial extensions for dealing with large binary files.

  • Bfiles
  • BigFiles
  • Snap
  • kbfiles
  • others?

I'd like to use the one that is most likely to be official (ie distributed with mercurial).
Kiln 2.0 uses a fork of Bfiles for its binary files. Does that make it more likely to become official?

Which is the preferred (semi-official) extension for handling binary files?

like image 759
deft_code Avatar asked Oct 13 '10 20:10

deft_code


2 Answers

It appears that Mercurial is planning to incorporate the 'largefiles' extension for the November 2.0 release. Mercurial incorporated the 'largefiles' extension in the 2.0 release. This extension is a descendent of 'kbfiles' (from Kiln), which is in turn a descendent of the bfiles extension.

It makes largefile support much more integrated into the Mercurial commands than bfiles did, and supports pushing to http(s) urls which I believe bfiles did not.

  • Kiln repo
  • preparation work on mercurial-devel
  • release expectations
like image 187
retracile Avatar answered Sep 21 '22 19:09

retracile


It's too early to tell. And it is way too early to start talking about including any of these extensions with Mercurial. IMHO they should all be considered experimental.

(I'm the author of one of those extensions (bfiles), so this is as authoritative an answer as you are likely to get. If someone proposed shipping any one of these extensions with Mercurial today, including mine, I would be strenuously opposed.)

Also, there is no logical link between game development and which extension to choose. It doesn't matter if you're tracking movies, game data, jar files, medical imaging data, or what: most source-control systems are not very good at handling it, and there is no clear answer yet which is the right way to do it with Mercurial.

IMHO stackoverflow is really not the right place for this sort of discussion; the mercurial-devel list is.

like image 34
Greg Ward Avatar answered Sep 20 '22 19:09

Greg Ward