I intend to switch over from CVS to Git.
In the case of SVN, there seems to be cvs2svn
. Is there a similar tool to easily migrate from CVS to Git?
The only tool that has incremental import seems to be git-cvsimport. If you want to convert (migrate) from CVS to Git, the best solution for now seems to be mentioned above cvs2git mode of cvs2svn.
See also Interfaces Frontends And Tools page on Git wiki, section about interaction with other revision control systems.
git-cvsserver
). –
Extraneous cvs2git
In addition to provided answers, here's a guide on how to convert cvs to git using cvs2git tool. Here, modulename is a name of CVS directory you want to import.
Prerequisites
cvs2svn
package (which includes cvs2git command) should be already installed.
Update: steps 1 and 2 are not fully correct - before attempting, read the comment below by mhagger, the maintainer of cvs2git
checkout modulename
cvs -d URL co -P modulename
create an empty CVSROOT needed by cvs2git
mkdir modulename/CVSROOT
download an example of cvs2git.options at http://cvs2svn.tigris.org/svn/cvs2svn/trunk/cvs2git-example.options (user "guest" with no password)
edit cvs2git.options file. Replace r'test-data/main-cvsrepos' with 'modulename'. Edit authors transforms.
# edit this run_options.set_project( r'modulename', # and this author_transforms={ 'jrandom' : ('J. Random', '[email protected]'), 'mhagger' : 'Michael Haggerty <[email protected]>',
run cvs2git to create git temp files
cvs2git --options=cvs2git.options --fallback-encoding utf-8
create git repository
mkdir gitrepo && cd gitrepo && git init .
import from git temp files created by cvs2git
cat ../cvs2git-tmp/git-{blob,dump}.dat | git fast-import
checkout working copy
git reset --hard
cvs2git
conversion from a checked out working copy of a repository! You have to run it against the repository itself; i.e., the directory that already contains a CVSROOT
subdirectory and lots of filename,v
files. If you are using a central CVS server, the repository that you need is located on the server. –
Halfback filename,v
files that contain all of the file revisions. A checked-out working copy only contains a single version of the project. cvs2svn does not know how to retrieve older revisions from the server. Ergo, it is not possible. You must have confused yourself by running different commands than you describe above. –
Halfback cvs2git
to convert to Git. –
Halfback rsync -av rsync://PROJECT.cvs.sourceforge.net/cvsroot/PROJECT/\* cvs
–
Saul TypeError: __init__() got multiple values for keyword argument 'blob_filename'
–
Altissimo cvs2git-example.options
above, use the one that matches your version (from eg. /usr/share/doc/cvs2svn/cvs2git-example.options
) and it should work fine. –
Defame If anyone still has the misfortune of using CVS, you could try "crap" : https://github.com/rcls/crap It's fast (as far as accessing CVS can be fast), supports the messes that you find in cvs repos, and incremental.
An alternative might be to use git cvsimport *
I've not tried this myself, but friends have reported good success converting first from CVS to SVN, and then from SVN to Git. It seems that the tools to do those respective transitions have been more thoroughly shaken out than a direct CVS to Git transition.
I'm the maintainer of cvs-fast-export. I used to maintain cvsps and parse2cvs and have closely evaluated cvs-fastimport and cvs2git.
CVS to git conversion is a hard, nasty problem with rebarbative edge cases. All the existing conversion tools have known limitations, some quite serious.
I recommend trying cvs-fast-export first. It produces better, faster conversions than anything else, except in rare cases where it fails cleanly and bails out. If you get the rare but dreaded "branch cycle error", try cvs2git.
Do not trust cvs-fastimport, it is quite buggy and often screws up branch joins.
For more, see http://www.catb.org/esr/cvs-fast-export/
.mailmap
(or git-filter-branching) after-the-fact. cvs-fast-export just worked, & found more commits. Thanks! –
Eyeopening I've tried cvs2git, git-cvsimport and parsecvs.
cvs2git sometimes (as far as I remember) creates bogus branches for tags.
git-cvsimport does not support multiple tags for a changeset. It is possible however to grab some additional changes for cvsps to support it and change the original git-cvsimport to something which uses updated cvsps (I've tried it and it seems to work). On the advantage side it supports incremental updates and has some logic to properly import merges (but it REQUIRES appropriate format for commit message).
parsecvs so far gave me the best results. Unfortunately the code available on the web does not compile cleanly with the latest git. The change while not trivial is doable.
EDIT: It looks like ESR took over both cvsps and parsecvs so there is some hope for CVS->GIT migration. BUT he already mentioned on some mailing list that he may declare some of the tools he took over recently officially dead.
I read the answer by Vanuan and mhagger's comments to it. Unfortunately mhagger didn't post how to do it with cvs2git
. It is all very well written up here: http://www.mcs.anl.gov/~jacob/cvs2svn/cvs2git.html
I used cvs2git
instead of git-cvsimport
because the documentation of git-cvsimport
suggests to use it instead to avoid the problems of git-cvsimport
: https://www.kernel.org/pub/software/scm/git/docs/git-cvsimport.html#issues
It follows essence of it that worked for me to create a git repository from a sourceforge CVS repository on Debian Sid:
$ apt-get install cvs2svn cvs
$ mkdir project.cvs
$ rsync -av rsync://${PROJECT}.cvs.sourceforge.net/cvsroot/${PROJECT}/ project.cvs
$ cvs2git --blobfile=git-blob.dat --dumpfile=git-dump.dat --username=cvs2git project.cvs
$ mkdir project.git
$ cd project.git
$ git init
$ cat ../git-blob.dat ../git-dump.dat | git fast-import
The rsync
step is needed because cvs2git
needs access to the whole history. A simple checkout is not enough.
You can add fromcvs to the list. It converts well and is extremely fast and also incremental. It does not do sticky tags, only branches, however.
You can use git cvsimport
. It requires cvsps
to be installed, but you need to install 2.x, as 3.x is not incompatible anymore.
Then import CVS repository on empty git. Sample usage:
git cvsimport -C RepoName -r cvs -o master -k -v -d:pserver:[email protected]:/cvsroot/path ModuleName
On OSX you install cvsps-2.1
in the following way (having brew
):
brew tap homebrew/versions
brew install cvsps2
brew link cvsps2
You can also use cvs2git
tool which can convert a CVS repository to git. However you need to have access to a CVSROOT directory.
Check cvs2git documentation for installation steps.
Example usage:
cvs2git --blobfile=git-blob.dat --dumpfile=git-dump.dat --username=cvs2git /path/to/cvs/repo
This would create two output files in git fast-import format. The names of these files are specified by your options file or command-line arguments. In the example, these files are named cvs2git-tmp/git-blob.dat
and cvs2git-tmp/git-dump.dat
.
These files can be imported into empty git repository by:
cat git-blob.dat git-dump.dat | git fast-import
Then delete the TAG.FIXUP
branch and run gitk --all
to view the results of the conversion.
Check for more, by running: cvs2git --help
.
I found cvs-fast-export did an excellent job. I had to download and compile it myself, but didn't have any significant issues doing so.
© 2022 - 2024 — McMap. All rights reserved.