If anyone is looking for a project, it is still not possible to import Mozilla CVS into git and then do increment updates. As I recall from the last time I played with it, cvsps throws away some of the branches because it thinks they are in a loop. parsecvs is unable to complete the entire import without getting errors and aborting. cvs2svn can import the entire Mozilla repository correctly. But it imports it to svn and does not have incremental support. Best solution would be to use the parser from parsecvs, apply the change set detection algorithm from cvs2svn, and then add cvsps' incremental update. It's also not reasonable to fork git processes, there are about a million change sets in Mozilla and it takes days of CPU time to do 1M forks. The import app needs to use a library version of git. Another tactic to reduce CPU time is to directly write pack files with the delta in a first pass, and add the change set index in a later pass. -- Jon Smirl jonsmirl@xxxxxxxxx - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html