I need to keep some big files under version (some games)
I do not need it , And I can not keep all versions of files under versions. I want to temporarily remove the version of our VCS big files.
I want to keep those files in version control. Zip files or ISO images These files may contain executable software or data (seismic data, SAR images, GNSS data) and they can be provided by my company's software supplier.
Which control version system can I use?
In CVs you can remove files from the repo. Duplication allows you to filter the repo content by dumping it and removing the files (it is a bit cumbersome). There is a erasing
command for this for the sake of rebalance, many of the new distributed VCS make it more difficult due to the use of hash at many places and it is also the fact that your repo can be replicated somewhere else Things can also be difficult. In HG there is a strip
command (part of the Mq
extension), Git can do the same as I think.
Comments
Post a Comment