Version control for sound, video, and other binary files
Asked Answered
A

7

17

What's the best way to version large amounts of binary files, say audio and video files? Git doesn't seem like it's really designed to handle large amounts of binary files.

The other issue is that content produces don't necessarily want to learn how to use a developer's tool like Git.

Has anyone found a good binary versioning companion for text based versioning systems like Git? What do game developers usually do? Is content just not versioned in many cases? Do centralized SCM's work better in this case?

African answered 12/11, 2010 at 23:26 Comment(0)
W
4

Adobe's Version Cue is a VCS with good integration in adobe suite and has a serviceable standalone tool. I won't recommend any version prior to CS3, though, because it just wasn't feature complete.

That said, I use git for version control on media files anyway. git just doesn't care what the format is, although it can't merge most binary formats when they do diverge. the builtin gui (git-gui and gitk) interfaces for git are actually quite nice, once you know your way around them.

Winthrop answered 12/11, 2010 at 23:50 Comment(0)
P
2

I'm versioning my binary files in Git, and before that I used Subversion. However, I really cannot recommend either of those, especially on Windows and/or 32 Bit systems.

In game development, Perforce seems to have an almost 100% market penetration, specifically because of its handling of binary files.

Pleurisy answered 13/11, 2010 at 3:11 Comment(0)
N
2

You might want to take a look at Boar, "Simple version control and backup for photos, videos and other binary files".

Nimbus answered 16/3, 2011 at 16:30 Comment(0)
C
1

Scott Chacon over at GitHub has created a Git extension, git-media, which allows you to use Git to track your media files without actually storing those files in your Git repo.

Cafeteria answered 25/2, 2013 at 23:54 Comment(0)
R
0

Mercurial has solid support for large binary files. I've been using it to version-control several thousand gzipped files. Just keep in mind that cloning the repo still means copying over all of the binary data that was ever stored under version control. On the other hand, with Subversion, you wouldn't have to copy the entire history just to work with the repo.

Ref answered 13/11, 2010 at 2:48 Comment(0)
M
0

TortoiseGit supports full git workflow for Office documents delegating diff to Office itself. It works also delegating to OpenOffice for OpenDocument formats.

Mclaurin answered 13/2, 2011 at 10:18 Comment(0)
F
0

git-annex allows managing files with git, without checking the file contents into git. While that may seem paradoxical, it is useful when dealing with files larger than git can currently easily handle, whether due to limitations in memory, time, or disk space.

git-annex is designed for git users who love the command line. For everyone else, the git-annex assistant turns git-annex into an easy to use folder synchroniser.

http://git-annex.branchable.com/

Febrifuge answered 26/2, 2013 at 10:56 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.