up vote 0 down vote favorite
share [g+] share [fb]

How can you get the CVS repo of MMIX to CVS/Git?

I know how to clone a repo at github by git clone URL, but I have never really used sourceforge before. They use CVS which is new to me.

My unsuccessful attempt

git cvs -d:pserver:anonymous@mmixmasters.cvs.sourceforge.net:/cvsroot/mmixmasters

I get the following tip at CVS -irc in trying to download the repo by CVS first

cvs -d /tmp/ add co -PA mixmasters

However, it is not working for me as expected.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

It's not clear what you expected that to do. git is not magic that drives CVS, it's an entirely different thing altogether.

git does have a cvsimport tool that will make a git repository out of a CVS repository, but do note that this will be an entirely different thing.

An example import:

mkdir mmixmasters
cd mmixmasters
git cvsimport -d:pserver:anonymous@mmixmasters.cvs.sourceforge.net:/cvsroot/mmixmasters mmixmasters

I'd recommend you understand both git and cvs better before trying to work with one gating the other, though.

link|improve this answer
Thank you a lot! – Masi Oct 30 '09 at 0:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.