Ticket UUID: | 5f9f516a22f5538aa862fea8fb0fa8ce470846c0 | ||
Title: | Cannot commit changes: tree checksums before and after commit do not match | ||
Status: | Open | Type: | Code_Defect |
Severity: | Critical | Priority: | |
Subsystem: | Resolution: | Open | |
Last Modified: | 2009-11-24 19:46:04 | ||
Version Found In: | d5695157d0 | ||
Description & Comments: | |||
All action took place on a iMac with MacOS/X 10.5.7.
Here the receipt to provoke the error: wget http://www.qiao.in-berlin.de/t3xr2.zip mkdir bug cd bug fossil new repos.fsl fossil open repos.fsl unzip ../t3xr2.zip fossil add . fossil com -nosign -m "Import failed"Fossil will answer with: New_Version: 19afb14b17676ebbd8b9060d4adb718a3ceb103f fossil: tree checksums before and after commit do not match Please let me know, if you need further information or if I can help somehow ... Thanks, chi :-) bharder added on 2009-06-13 15:45:23: chi added on 2009-06-13 16:54:48: In the archive there is a file Manifest. Now Fossil want to create an own file manifest where it stores some information. Unfortunately the MacOS/X' filesystem HFS+ is case insensitive per default! So the checkin's file Manifest and Fossil's own one manifest are considered the same. So after checkin, Fossil write its manifest thereby destroying a file that is part of the checkin! Fossil detect that and complain. As Fossil do not need a file manifest (i.e. it can work without one), it should be taken into consideration, whether it should be possible to prevent the creation of the manifest and manifest.uuid files per default? Ciao, chi :-) anonymous claiming to be kc added on 2009-11-16 14:11:54: altufaltu added on 2009-11-17 01:59:54: That will keep things simple. drh added on 2009-11-22 23:32:47: For example, the source code to fossil itself (which is stored as a fossil repository) looks at the manifest and manifest.uuid files to get the date and time and version information that is displayed when you type: "fossil version". And SQLite gets the information returned by the sqlite3_sourceid() function in the same way. eric added on 2009-11-24 19:46:04: |