Script/tool to import series of snapshots, each being a new revision, into Subversion, populating source tree?
- by Rob
I've developed code locally and taken a fairly regular snapshot whenever I reach a significant point in development, e.g. a working build.
So I have a long-ish list of about 40 folders, each folder being a snapshot e.g. in ascending date YYYYMMDD order, e.g.:-
20100523
20100614
20100721
20100722
20100809
20100901
20101001
20101003
20101104
20101119
20101203
20101218
20110102
I'm looking for a script to import each of these snapshots as a new subversion revision to the source tree. The end result being that the HEAD revision is the same as the last snapshot, and other revisions are as numbered.
Some other requirements:
that the HEAD revision is not cumulative of the previous snapshots, i.e., files that appeared in older snapshots but which don't appear in later ones (e.g. due to refactoring etc.) should not appear in the HEAD revision.
meanwhile, there should be continuity between files that do persist between snapshots. Subversion should know that there are previous versions of these files and not treat them as brand new files within each revision.
Some background about my aim:
I need to formally revision control this work rather than keep local private snapshot copies.
I plan to release this work as open source, so version controlling would be highly recommended
I am evaluating some of the current popular version control systems (Subversion and GIT) BUT I definitely need a working solution in Subversion. I'm not looking to be persuaded to use one particular tool, I need a solution for each tool I am considering as I would also like a solution in GIT (I will post an answer separately for GIT so separate camps of folks who have expertise in GIT and Subversion will be able to give focused answers on one or the other).
The same question but for GIT:
Script/tool to import series of snapshots, each being a new edition, into GIT, populating source tree?
An outline answer for Subversion in stackoverflow.com but not enough specifics about the script: what commands to use, code to check valid scenarios if necessary - i.e. a working script basically. http://stackoverflow.com/questions/2203818/is-there-anyway-to-import-xcode-snapshots-into-a-new-svn-repository