Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Clearify the operation of the "fossil annotate" command in the built-in help. Ticket [a182bd01a9c8dde66b1f] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
bb1b3fa928faf417530a9f0e6da3d779 |
| User & Date: | drh 2010-09-18 15:16:31.000 |
Context
|
2010-09-18
| ||
| 15:51 | Merge in changes from the wolfgangFormat2CSS_2 branch, but with edits. ... (check-in: b48f78964e user: drh tags: trunk, release) | |
| 15:16 | Clearify the operation of the "fossil annotate" command in the built-in help. Ticket [a182bd01a9c8dde66b1f] ... (check-in: bb1b3fa928 user: drh tags: trunk) | |
|
2010-09-17
| ||
| 06:04 | removed dupe block in if() statement ... (check-in: 63dc0641ac user: bharder tags: trunk) | |
Changes
Changes to src/diff.c.
| ︙ | ︙ | |||
822 823 824 825 826 827 828 | /* ** COMMAND: annotate ** ** %fossil annotate FILENAME ** ** Output the text of a file with markings to show when each line of | | | 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
/*
** COMMAND: annotate
**
** %fossil annotate FILENAME
**
** Output the text of a file with markings to show when each line of
** the file was last modified.
*/
void annotate_cmd(void){
int fnid; /* Filename ID */
int fid; /* File instance ID */
int mid; /* Manifest where file was checked in */
Blob treename; /* FILENAME translated to canonical form */
char *zFilename; /* Cannonical filename */
|
| ︙ | ︙ |