Thursday, February 26, 2015

software rec - Maintaining a repository of binary files

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.

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...