-
Notifications
You must be signed in to change notification settings - Fork 118
CVS to Git
rolfl edited this page Aug 1, 2011
·
1 revision
Process for migrating JDOM from CVS to GitHub
Make a temporary working folder.
mkdir movejdom
cd movejdom
Set up CVS access
setenv CVSROOT :pserver:anonymous@cvs.jdom.org:/home/cvspublic
cvs login (and log in).
Get the CVS repo in to git format.
git cvsimport jdom -C core
git cvsimport jdom-test -C test
git cvsimport jdom-contrib -C contrib
Then stitch the three repositories in to one repo:
Download and install the git-stitch-repo from CPAN.org (http://search.cpan.org/~book/Git-FastExport-0.07/script/git-stitch-repo)
Make the target git repository:
mkdir jdom.git
cd jdom.git
git init
git-stitch-repo ../core:core ../test:test ../contrib:contrib | git fast-import
Push the repository to GitHub
git remote rm origin
git remote add origin git@github.com:hunterhacker/jdom.git
git push -u origin master
[JDOM Home](http://www.jdom.org)
Stable Release
- [Download](http://www.jdom.org/downloads/index.html)
- [JavaDoc](http://www.jdom.org/docs/apidocs/index.html)
JDOM 2.x
- Overview
- Getting Started
- JDOM on Android
- [JavaDoc](http://hunterhacker.github.com/jdom/jdom2/apidocs/index.html)
- [Coverage](http://hunterhacker.github.com/jdom/jdom2/coverage/index.html)
- [UnitTests](http://hunterhacker.github.com/jdom/jdom2/junit.report/index.html)
- Features
- JDOM 1.x to JDOM 2.x
- Dependencies
Developing JDOM