Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Minor correction to finfo command comment help. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8913402d10260172dc5dc89126bce6fb |
| User & Date: | andybradford 2021-04-17 12:23:01.509 |
Context
|
2021-04-20
| ||
| 14:16 | Improved robustness of the merge algorithm when merging long-running branches with many name changes. check-in: dc850c9b3b user: drh tags: trunk | |
|
2021-04-18
| ||
| 19:59 | Improve /brlist page so that several branches can be easily selected for the dedicated study via /timeline page. This is implemented using simple JavaScript that interactively changes a special hyperlink in the submenu of /brlist page. See [forum:/forumthread/07c94e4d7c202e|forum thread 07c94e4d7c]. check-in: 08433ff8c9 user: george tags: brlist-timeline | |
|
2021-04-17
| ||
| 12:23 | Minor correction to finfo command comment help. check-in: 8913402d10 user: andybradford tags: trunk | |
|
2021-04-16
| ||
| 18:37 | Improvements to the "fossil merge" algorithm so that it works better in complex cases involving branch merges where a file was created on one branch but not the other and had its name changed somewhere along the line. See [forum:/forumpost/549700437b|forum post 549700437b] for discussion. check-in: cb4f38ee67 user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
31 32 33 34 35 36 37 | ** For the -l|--log mode: If "-b|--brief" is specified one line per revision ** is printed, otherwise the full comment is printed. The "-n|--limit N" ** and "--offset P" options limits the output to the first N changes ** after skipping P changes. ** ** The -i mode will print the artifact ID of FILENAME given the REVISION ** provided by the -r flag (which is required). | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | ** For the -l|--log mode: If "-b|--brief" is specified one line per revision ** is printed, otherwise the full comment is printed. The "-n|--limit N" ** and "--offset P" options limits the output to the first N changes ** after skipping P changes. ** ** The -i mode will print the artifact ID of FILENAME given the REVISION ** provided by the -r flag (which is required). ** ** In the -s mode prints the status as <status> <revision>. This is ** a quick status and does not check for up-to-date-ness of the file. ** ** In the -p mode, there's an optional flag "-r|--revision REVISION". ** The specified version (or the latest checked out version) is printed ** to stdout. The -p mode is another form of the "cat" command. ** |
| ︙ | ︙ |