Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | minor typo fix in help text. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
24e259da5aa399c3eacaab1510b566b7 |
| User & Date: | stephan 2013-05-25 14:34:29.719 |
Context
|
2013-05-25
| ||
| 17:22 | Add the ci= query parameter to the finfo webpage, to trace the direct ancestors of a file from a particular check-in. ... (check-in: 418ec701a3 user: drh tags: trunk) | |
| 14:34 | minor typo fix in help text. ... (check-in: 24e259da5a user: stephan tags: trunk) | |
| 14:30 | Added notes about --args FILENAME to default help message, per ML request. ... (check-in: 0e5bbade2c user: stephan tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
550 551 552 553 554 555 556 |
fossil_print(
"\nCommands and filenames may be passed on to fossil from a file\n"
"by using:\n"
"\n %s --args FILENAME ...\n",
g.argv[0]
);
fossil_print(
| | | 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 |
fossil_print(
"\nCommands and filenames may be passed on to fossil from a file\n"
"by using:\n"
"\n %s --args FILENAME ...\n",
g.argv[0]
);
fossil_print(
"\nEach line of the file is assumed to be a filename unless it starts\n"
"with '-' and contains a space, in which case it is assumed to be\n"
"another flag and is treated as such. --args FILENAME may be used\n"
"in conjunction with any other flags.\n");
fossil_exit(1);
}else{
const char *zChdir = find_option("chdir",0,1);
g.isHTTP = 0;
|
| ︙ | ︙ |