I'm going to be working with other people on code from a project that uses cvs. We want to use a distributed vcs to make our work and when we finish or maybe every once in a while we want to commit our code and all of our revision history to cvs. We don't have write access to the project's cvs repo so we can't commit very frequently. What tool can we use to export our revision history to cvs? Currently we were thinking of using git or mercurial but we could use another distributed vcs if it could make the export easier.
feedback
|
|
Fortunately for those of us who are still forced to use CVS, git provides pretty good tools to do exactly what you're wanting to do. My suggestions (and what we do here at $work): Creating the Initial CloneUse
The Depending on the size and history of the CVS repository, this first import will take a VERY long time. You can add a -v to the above command if you want the peace of mind that something is in fact happening. Once this process is completed, you will have a Configuration TweaksThere are a few configuration tweaks that will make incremental imports from CVS (as well as exports) easier in the future. These are not documented on the
All of these options can be specified on the command line so you could safely skip this step. Incremental ImportsSubsequent
If you haven't set up your configs to specify the defaults, you'll need to specify them on the command line:
Either way, two things to keep in mind:
Making Local ChangesIn practice, I recommend always making changes on branches and only merging to Exporting Changes to CVSThe
You can see what each of those options mean on the man page for git-cvsexportcommit. You do have the option of setting the
If the patch fails for whatever reason, my experience is that you'll (unfortunately) probably be better off copying the changed files over manually and committing using the cvs client. This shouldn't happen, however, if you make sure If the commit fails for whatever reason (network/permissions issues, etc), you can take the command printed to your terminal at the end of the error output and execute it in your CVS working directory. It usually looks something like this:
The next time you do a Cloning your CVS cloneIf you have more than one person needing to do the
After you've removed these configs, you will have to explicitly say where and what to pull from when you want to pull in new commits from the central repository:
Overall, I've found this work-flow to be quite manageable and the "next best thing" when migrating completely to git isn't practical. | |||||||||||||||
feedback
|
|
You should not trust cvsimport blindly and check if the imported tree matches what is in the CVS repo. I've done this by sharing the new project using eclipse CVS' plug-in and found that there were inconsistencies.. Two commits that were done in less than a minute with the same commit message (in order to revert a wrongfully deleted file) were grouped into one big commit, which resulted in a missing file from the tree.. I was able to solve this problem by modifying the 'fuzz' parameter to less than a minute. example:
bottom line: check your tree after importing | |||
|
feedback
|
|
In addition to Brian Phillips answer: there is also git-cvsserver which functions like CVS server but actually access git repository... but it has some limitations. | |||
|
feedback
|