Differences From Artifact [ada6166afd]:
- File src/tag.c — part of check-in [d5b9674ec5] at 2011-06-01 22:39:44 on branch trunk — Add the --type option to the "fossil tag find" command. Ticket [9bed1f604e0773] (user: drh size: 17184) [more...]
To Artifact [d234b3ab9f]:
- File src/tag.c — part of check-in [b14ab41ff8] at 2011-08-19 23:27:14 on branch venks-emacs — Add a -showfiles flag to timeline. fossil ... -showfiles will now print a list of files after the checkin comment, like the "Show Files" button in the Web GUI. The format of the printed lines is the same as update. (user: venkat size: 17187) [more...]
| ︙ | ︙ | |||
456 457 458 459 460 461 462 |
" AND blob.rid IN ("
" SELECT rid FROM tagxref"
" WHERE tagtype>0 AND tagid=%d"
")"
" ORDER BY event.mtime DESC",
timeline_query_for_tty(), zType, tagid
);
| | | 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
" AND blob.rid IN ("
" SELECT rid FROM tagxref"
" WHERE tagtype>0 AND tagid=%d"
")"
" ORDER BY event.mtime DESC",
timeline_query_for_tty(), zType, tagid
);
print_timeline(&q, 2000, 0);
db_finalize(&q);
}
}
}else
if( strncmp(g.argv[2],"list",n)==0 ){
Stmt q;
|
| ︙ | ︙ |