Maintaining a repository of binary files

0

I have a bunch of files in proprietary format (.pdf, .doc, .wmv, etc) that I want to mirror on a server I have, for archival purposes as well as to be able to pull down the "asset repository" to another computer (from the server).

Basically I want GIT but for binary files. It would be nice if a revision history could be maintained for the Word documents (every "push" to the server overwrites the copy on the server but secretly the old copy would be saved somewhere).

The simplest thing is to use FTP, but it seems like an annoying way to manage, to have to manually rename the documents etc.

bobobobo

Posted 2010-10-20T15:20:02.810

Reputation: 4 632

Answers

1

Maybe rsync with the --backup option

http://rsync.samba.org/ftp/rsync/rsync.html

RedGrittyBrick

Posted 2010-10-20T15:20:02.810

Reputation: 70 632

0

Yu can use git (or svn, or...) for binary files. Just that (at least in git's case) non-text files can't ge stored efficiently as differences between versions, so the repository will grow like the sum of the file's version sizes.

vonbrand

Posted 2010-10-20T15:20:02.810

Reputation: 2 083