Differences From:
File
tools/cvs2fossil/lib/c2f_fossil.tcl
part of check-in
[7c43583de1]
- Tinkered with the revision information transfered from a changeset to push, to the fossil accessor code, modified the logging as well.
by
aku on
2008-01-31 06:25:34.
[view]
To:
File
tools/cvs2fossil/lib/c2f_fossil.tcl
part of check-in
[b7a93530ef]
- Fixed description of file checkin.c. Implemented new command test-import-manifest. Updated fossil accessor code in the importer to the changed command line API of test-import-manifest.
by
aku on
2008-02-01 05:32:04.
[view]
@@ -107,13 +107,12 @@
log write 2 fossil {-> $parent}
log write 2 fossil {%% [join [split $message \n] "\n%% "]}
lappend cmd Do test-import-manifest $date $message
- if {$parent ne ""} { lappend cmd --parents $parent }
- lappend cmd --files
+ if {$parent ne ""} { lappend cmd -p $parent }
foreach {frid fpath flabel} $revisions {
- lappend cmd $frid $fpath
- log write 2 fossil {** <[format %5d $frid]> = $flabel}
+ lappend cmd -f $frid $fpath
+ log write 2 fossil {** <[format %5d $frid]> = <$flabel>}
}
# run fossil test-command performing the import.
# set uuid [eval $cmd]