Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | doc fix |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
122b631c31f46da462d4b1e82cf78f98 |
| User & Date: | jan.nijtmans 2013-05-20 10:58:45.933 |
Context
|
2013-05-21
| ||
| 13:56 | Add option -v|--verbose to "fossil ls" as replacement for (deprecated) -l. ... (check-in: e91d65afe5 user: jan.nijtmans tags: trunk) | |
|
2013-05-20
| ||
| 10:58 | doc fix ... (check-in: 122b631c31 user: jan.nijtmans tags: trunk) | |
|
2013-05-17
| ||
| 12:04 | Remove excess verbage from the output of "fossil clean" unless the --verbose or -v command-line option is used. Issue an error if an unrecognized command-line argument is seen, to prevent mistakes like using --dryrun instead of --dry-run. ... (check-in: 273ec22f25 user: drh tags: trunk) | |
Changes
Changes to src/update.c.
| ︙ | ︙ | |||
75 76 77 78 79 80 81 | ** ** If one or more FILES are listed after the VERSION then only the ** named files are candidates to be updated. If FILES is omitted, all ** files in the current checkout are subject to be updated. Using ** a directory name for one of the FILES arguments is the same as ** using every subdirectory and file beneath that directory. ** | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | ** ** If one or more FILES are listed after the VERSION then only the ** named files are candidates to be updated. If FILES is omitted, all ** files in the current checkout are subject to be updated. Using ** a directory name for one of the FILES arguments is the same as ** using every subdirectory and file beneath that directory. ** ** The -n or --dry-run option causes this command to do a "dry run". It ** prints out what would have happened but does not actually make any ** changes to the current checkout or the repository. ** ** The -v or --verbose option prints status information about unchanged ** files in addition to those file that actually do change. ** ** Options: |
| ︙ | ︙ | |||
530 531 532 533 534 535 536 |
}
}
/*
** Clean up the mid and pid VFILE entries. Then commit the changes.
*/
if( dryRunFlag ){
| | | 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
}
}
/*
** Clean up the mid and pid VFILE entries. Then commit the changes.
*/
if( dryRunFlag ){
db_end_transaction(1); /* With --dry-run, rollback changes */
}else{
ensure_empty_dirs_created();
if( g.argc<=3 ){
/* All files updated. Shift the current checkout to the target. */
db_multi_exec("DELETE FROM vfile WHERE vid!=%d", tid);
checkout_set_all_exe(tid);
manifest_to_disk(tid);
|
| ︙ | ︙ |