Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Extended the repo/checkout fingerprint mismatch warning to offer an interim workaround, per forumpost/5f9d4cef56. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bf7c2e94f164feb753f0eb686b1415cf |
User & Date: | stephan 2019-01-17 19:58:35.223 |
Context
2019-01-17
| ||
22:43 | Added a warning about loss of stash and undo when performing the 'interim workaround' for an RID mismatch. ... (check-in: cc44fa84 user: stephan tags: trunk) | |
19:58 | Extended the repo/checkout fingerprint mismatch warning to offer an interim workaround, per forumpost/5f9d4cef56. ... (check-in: bf7c2e94 user: stephan tags: trunk) | |
00:20 | Add the bid= query parameter to the /timeline page. ... (check-in: 8cb1b231 user: drh tags: trunk) | |
Changes
Changes to src/db.c.
︙ | ︙ | |||
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 | ); fossil_print( "has been swapped with a clone that may have different\n" "integer keys for the various artifacts. As of 2019-01-11,\n" "we are working on enhancing Fossil to be able to deal with\n" "that automatically, but we are not there yet. Sorry.\n\n" ); fossil_fatal("bad fingerprint"); } } /* ** Return true if there have been any changes to the repository ** database since it was opened. | > > > > > > > | 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 | ); fossil_print( "has been swapped with a clone that may have different\n" "integer keys for the various artifacts. As of 2019-01-11,\n" "we are working on enhancing Fossil to be able to deal with\n" "that automatically, but we are not there yet. Sorry.\n\n" ); fossil_print( "As an interim workaround, try:\n" " %s close --force\n" " %s open \"%s\" --keep\n\n", g.argv[0], g.argv[0], zDbName ); fossil_fatal("bad fingerprint"); } } /* ** Return true if there have been any changes to the repository ** database since it was opened. |
︙ | ︙ |