Which VCS is efficient for storing small changes to big text files?
Posted
by
MiguelM
on Programmers
See other posts from Programmers
or by MiguelM
Published on 2012-09-19T22:22:17Z
Indexed on
2012/09/20
3:50 UTC
Read the original article
Hit count: 169
version-control
|git
A government agency publishes a text file with thousands of records. The entire file is about 60MB. Every day the file has about 60 new or changed records.
We need to validate some info against that file, and for auditing purposes, we may need to recover the file as it was in certain date.
I thought I could use a VCS to store the file using git, but I understand git stores the entire text file gzipped, so the 60BM file will still need about 30MB to store everyday version.
I wonder if one of the free VCS stores only diff/patch files.
© Programmers or respective owner