Differences From:
File
tools/cvs2fossil/lib/cvs2fossil.tcl
part of check-in
[d9fc75e587]
- Created new pass for the import of files and changesets. Uses the new file method and fossil accessor class to handle the file import. Changeset -> manifest conversion is _not_ covered yet.
by
aku on
2007-12-05 07:57:50.
[view]
To:
File
tools/cvs2fossil/lib/cvs2fossil.tcl
part of check-in
[31b15fcf30]
- Split the current import pass into three, for files, changesets, and finalization (fossil rebuild).
by
aku on
2008-03-05 03:42:50.
[view]
@@ -40,9 +40,11 @@
package require vc::fossil::import::cvs::pass::rtopsort ; # R'evision Top'ological Sort'
package require vc::fossil::import::cvs::pass::breakscycle ; # Break' S'ymbol Cycle's
package require vc::fossil::import::cvs::pass::breakacycle ; # Break' A'll Cycle's
package require vc::fossil::import::cvs::pass::atopsort ; # A'll Top'ological Sort'
-package require vc::fossil::import::cvs::pass::import ; # Import' Files and Changesets
+package require vc::fossil::import::cvs::pass::importfiles ; # Import' Files
+package require vc::fossil::import::cvs::pass::importcsets ; # Import' Changesets
+package require vc::fossil::import::cvs::pass::importfinal ; # Import' Finalization
# # ## ### ##### ######## ############# #####################
## Support for passes etc.