How to import and keep updated a CVS repository in Git?
What I have done in the past is: Import the CVS repository Using: $ git cvsimport -C target-cvs -r cvs -k -vA authors-file.txt -d $CVSROOT module Where: target-cvs is the directory to keep my local copy of the repository. cvs is the name to use for referencing the remote repository. So, I will have cvs/master, … Read more