Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove a longtime obsolete comment in the branch listing routine. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ebe81aa11c167cd6352abb22f742bbac |
| User & Date: | danield 2023-06-14 14:29:09.065 |
Context
|
2023-06-15
| ||
| 11:26 | Document the --errorlog command-line option to "fossil ui". ... (check-in: 1e64c2c10b user: drh tags: trunk) | |
|
2023-06-14
| ||
| 14:37 | Add the ability for 'branch list' to filter the branches that have/have not been merged into the current branch, per [forum:c4a9d9e097|forum request]. ... (Closed-Leaf check-in: d6ddd5bcfa user: danield tags: branch-list-merged-unmerged) | |
| 14:29 | Remove a longtime obsolete comment in the branch listing routine. ... (check-in: ebe81aa11c user: danield tags: trunk) | |
|
2023-06-12
| ||
| 18:24 | Update the built-in SQLite to the latest trunk version that fixes a harmless compiler warning. ... (check-in: f8a29b2e20 user: drh tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
280 281 282 283 284 285 286 | #define BRL_PRIVATE 0x010 /* Show only private branches */ #endif /* INTERFACE */ /* ** Prepare a query that will list branches. ** | < < < < | 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
#define BRL_PRIVATE 0x010 /* Show only private branches */
#endif /* INTERFACE */
/*
** Prepare a query that will list branches.
**
** If the BRL_ORDERBY_MTIME flag is set and nLimitMRU ("Limit Most Recently Used
** style") is a non-zero number, the result is limited to nLimitMRU entries, and
** the BRL_REVERSE flag is applied in an outer query after processing the limit,
** so that it's possible to generate short lists with the most recently modified
** branches sorted chronologically in either direction, as does the "branch lsh"
** command.
** For other cases, the outer query is also generated, but works as a no-op. The
|
| ︙ | ︙ |