vote up 3 vote down star

I need to keep under version some large files (some Gigs).

I don't need, and I can't keep under version all the version of the files. I want to be able to remove from my VCS large files version at some moment.

What control version system could I use?

EDIT: The files that I want to keep under version control are big .zip files or ISO images. These files may contains executable software or data (seismic data, SAR images, GNSS data) and they are provided by the software supplier of my company.

flag

63% accept rate
Question text should be changed to be: "Are there version control systems that allow you to permanently delete files?" – Nick Pierpoint Jan 27 at 11:56
@Nick Pierpoint: Title modified as you suggested. – Andrea Francia Jan 27 at 13:26
It might help us to give you a better answer if you tell us a bit more about these files: text or binary? how are they acquired or generated (obviously not by typing)? what are they? – Brent.Longborough Jan 27 at 13:53

8 Answers

vote up 4 vote down

I don’t think there’s any version control system that allows you do that regularly because that goes against everything version control systems stand for.

link|flag
I don't. Sometimes you make mistakes. You may accidentally check-in a huge binary that you just don't want anymore. It may double the size of your repo and you don't want it anymore. – Nick Pierpoint Jan 27 at 11:55
That’s what I mean by “regularly.” Of course almost all systems allow you to remove a file from a repository somehow but that is by no means an everyday operation encouraged by a VCS. – Bombe Jan 27 at 12:05
vote up 8 vote down

In CVS you can do that by removing the files from the repo. Subversion allows that by dumping the content of the repo and filter it to remove the files (that is a bit cumbersome). Perforce has an obliterate command for that. Many of the newer distributed VCS make it rather difficult by their usage of hashes all over the places and the fact that your repo may have been replicated elsewhere also complicate things. Hg has a strip command (part of the Mq extension), Git can also do that I think.

link|flag
Good answer, and the only answer so far that answers the original question :). The link for handling this in Subversion is subversion.tigris.org/faq.html#removal. Here they also talk about having "obliterate" on the TODO list. – Nick Pierpoint Jan 27 at 12:01
vote up 0 vote down

Many version control systems allow you to configure them in a way so that they store only the differences between several versions of a file and save space through that.

For example if you have a 1Gig file committed, change a part of it and commit it again, only the changed part will be stored in the version control system.
There won't be 2Gigs used (initial and new file) but only 1Gig+sizeOfChanges.

There's just one downside:if you're storing files which change their whole content from revision to revision this can also be counter-productive as the changes take almost the same space as the original version. Archive files are a example for such files where only a small change in the (real) content can lead to a completely changed content of the archive file.

I'd suggest to test several version control systems on your own and with your specific needs and environment and monitor each one at the server-side how the storage requirements for each system changes.

link|flag
vote up 1 vote down

Some distributed version control systems allow to create "checkpoints" that allow you to use this version as kind of a base revision and safe you from pulling all the history before the checkpoint on every checkout. So you can remove the big files, create a checkpoint, and checkout/clone the repository from that checkpoint to a new directory. Then you have there a new, small repository, but without the history before the checkpoint. It you don't need that history you can burn the old repository on CD and use the new, partial one from now on.

I've only tested it in darcs, and there it works, but YMMV depending on version control system and use cases.

link|flag
vote up 1 vote down

Hi there

TFS has a destroy command that you can use to permanently delete files or revisions as you see fit.

There is more information at this MSDN article.

link|flag
vote up 4 vote down

Perforce generally allows files to be put in two way, as head revision only (so, you'd only every have one copy) or all revisions. Perforce does have the admin level obliterate command that can be used to delete revisions. Its up to you to query for a list of files, possibly by date or number of revisions, and to specify the revisions to the obliterate command. As the name suggests obliterate deletes the revisions permanently from the database, so, I always generate scripts to do this and review them before running them. If the obliterate command is NOT run with the -Y flag, it will generate a list of what would be obliterated, also very useful.

link|flag
P4 now allows you to specify the # of revisions to be saved as part of the file type (+S) – Tony Lee Jan 28 at 23:44
vote up 1 vote down

Somehow I get the impression that you should not use a version control system at all. As said before, what you're trying to do goes against everything you would need a version control system for in the first place.

I suggest you create a file system directory structure that makes sense for what you're trying to accomplish and so that you can structure your data. And just make backup's of those files.

link|flag
Maybe, you're right, thanks. – Andrea Francia Jan 28 at 20:15
vote up 0 vote down

It sounds to me like you need an intelligent backup system, rather than version control.

I use SyncBackSE; it allows you to keep a number of previous versions, and can also do things like "ignore all files changed more than 30 days ago".

It's one of the few bits of paid-for software I use. I think it's worth checking out.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.