Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added missing help docs for timeline -f|--showfiles. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6ed9ad246fbfa3e94706e46ee4cc471a |
| User & Date: | stephan 2013-06-13 17:35:56.425 |
Context
|
2013-06-14
| ||
| 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) | |
|
2013-06-10
| ||
| 21:07 | Disable the database file alias warnings on Mac due to Time-Machine issues. ... (check-in: 14b1e90f21 user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 |
** -t|--type TYPE only display items from the give types, such as:
** ci = file commits only
** e = events only
** t = tickets only
** w = wiki commits only
** -v|--verbose print the list of files changed in a checkin after
** the checkin comment.
*/
void timeline_cmd(void){
Stmt q;
int n, k;
const char *zLimit;
const char *zType;
char *zOrigin;
| > > > | 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 |
** -t|--type TYPE only display items from the give types, such as:
** ci = file commits only
** e = events only
** t = tickets only
** w = wiki commits only
** -v|--verbose print the list of files changed in a checkin after
** the checkin comment.
** -f|--showfiles Outputs the list of files changed by each commit
** and the type of each change (edited, deleted,
** etc.).
*/
void timeline_cmd(void){
Stmt q;
int n, k;
const char *zLimit;
const char *zType;
char *zOrigin;
|
| ︙ | ︙ |