Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | doc fixes. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a38fa0b80bad23b3675cfe921f5d5276 |
| User & Date: | jan.nijtmans 2013-05-14 11:36:31.207 |
Context
|
2013-05-14
| ||
| 14:15 | Function file_tree_name() should respect case-sensitive setting. Add --case-sensitive option to test-tree-name. ... (check-in: 0df0ce8025 user: jan.nijtmans tags: trunk) | |
| 11:36 | doc fixes. ... (check-in: a38fa0b80b user: jan.nijtmans tags: trunk) | |
| 08:08 | Make sure that find_option() is called before the argument check for the test-looks-like-utf command. ... (check-in: fd2fbdb965 user: mistachkin tags: trunk) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
456 457 458 459 460 461 462 | ** the --dotfiles option is used. ** ** The --ignore option overrides the "ignore-glob" setting, as do the ** --case-sensitive option with the "case-sensitive" setting and the ** --clean option with the "clean-glob" setting. See the documentation ** on the "settings" command for further information. ** | | | 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
** the --dotfiles option is used.
**
** The --ignore option overrides the "ignore-glob" setting, as do the
** --case-sensitive option with the "case-sensitive" setting and the
** --clean option with the "clean-glob" setting. See the documentation
** on the "settings" command for further information.
**
** The -n|--dry-run option shows what would happen without actually doing anything.
**
** This command can be used to track third party software.
**
** Options:
** --case-sensitive <BOOL> override case-sensitive setting
** --dotfiles include files beginning with a dot (".")
** --ignore <CSG> ignore files matching patterns from the
|
| ︙ | ︙ |
Changes to src/checkin.c.
| ︙ | ︙ | |||
1544 1545 1546 1547 1548 1549 1550 |
prompt_user("unable to sign manifest. continue (y/N)? ", &ans);
cReply = blob_str(&ans)[0];
if( cReply!='y' && cReply!='Y' ){
fossil_exit(1);
}
}
| | | 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 |
prompt_user("unable to sign manifest. continue (y/N)? ", &ans);
cReply = blob_str(&ans)[0];
if( cReply!='y' && cReply!='Y' ){
fossil_exit(1);
}
}
/* If the -n|--dry-run option is specified, output the manifest file
** and rollback the transaction.
*/
if( dryRunFlag ){
blob_write_to_file(&manifest, "");
}
if( outputManifest ){
|
| ︙ | ︙ |