Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Combine comment lines for --verbose and (deprecated) --showfiles. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a6dad6508c0e95bd0aceb28fec1a2691 |
| User & Date: | jan.nijtmans 2013-06-14 07:19:58.652 |
Context
|
2013-06-18
| ||
| 14:16 | Added some entries to the 1.26 changelog. ... (check-in: 00d516809d user: stephan tags: trunk) | |
|
2013-06-17
| ||
| 21:44 | Changes from Isaac Jurado that record renames on an import from git. ... (check-in: 97d8a08ac9 user: drh tags: git-better-import) | |
|
2013-06-14
| ||
| 12:09 | Incorporate the NGQP (Next-Generation Query Planner) branch of SQLite for the purpose of testing SQLite. ... (check-in: 8b109c2288 user: drh tags: sqlite-NGQP) | |
| 07:19 | Combine comment lines for --verbose and (deprecated) --showfiles. ... (check-in: a6dad6508c user: jan.nijtmans tags: trunk) | |
|
2013-06-13
| ||
| 17:35 | Added missing help docs for timeline -f|--showfiles. ... (check-in: 6ed9ad246f user: stephan tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
1618 1619 1620 1621 1622 1623 1624 | ** ** The BASELINE can be any unique prefix of 4 characters or more. ** The DATETIME should be in the ISO8601 format. For ** examples: "2007-08-18 07:21:21". You can also say "current" ** for the current version or "now" for the current time. ** ** Options: | | | < < | | | 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 |
**
** The BASELINE can be any unique prefix of 4 characters or more.
** The DATETIME should be in the ISO8601 format. For
** examples: "2007-08-18 07:21:21". You can also say "current"
** for the current version or "now" for the current time.
**
** Options:
** -n|--limit N Output the first N changes (default 20)
** -t|--type TYPE Output items from the given types only, such as:
** ci = file commits only
** e = events only
** t = tickets only
** w = wiki commits only
** -v|--verbose Output the list of files changed by each commit
** and the type of each change (edited, deleted,
** etc.) after the checkin comment.
*/
void timeline_cmd(void){
Stmt q;
int n, k;
const char *zLimit;
const char *zType;
char *zOrigin;
|
| ︙ | ︙ |