Fossil SCM
Enhance the comments associated with the common command line options.
Commit
5a2e8453a11019c7d73220e9a41469edf42e1e8d
Parent
21e08f09049a403…
1 file changed
+14
-11
+14
-11
| --- src/add.c | ||
| +++ src/add.c | ||
| @@ -236,16 +236,16 @@ | ||
| 236 | 236 | ** be treated case sensitive or not. If the option is not given, the default |
| 237 | 237 | ** depends on the global setting, or the operating system default, if not set. |
| 238 | 238 | ** |
| 239 | 239 | ** Options: |
| 240 | 240 | ** |
| 241 | -** --case-sensitive <BOOL> override case-sensitive setting | |
| 241 | +** --case-sensitive <BOOL> Override the case-sensitive setting. | |
| 242 | 242 | ** --dotfiles include files beginning with a dot (".") |
| 243 | 243 | ** -f|--force Add files without prompting |
| 244 | -** --ignore <CSG> ignore files matching patterns from the | |
| 244 | +** --ignore <CSG> Ignore files matching patterns from the | |
| 245 | 245 | ** comma separated list of glob patterns. |
| 246 | -** --clean <CSG> also ignore files matching patterns from | |
| 246 | +** --clean <CSG> Also ignore files matching patterns from | |
| 247 | 247 | ** the comma separated list of glob patterns. |
| 248 | 248 | ** |
| 249 | 249 | ** See also: addremove, rm |
| 250 | 250 | */ |
| 251 | 251 | void add_cmd(void){ |
| @@ -375,11 +375,12 @@ | ||
| 375 | 375 | ** This command does NOT remove the files from disk. It just marks the |
| 376 | 376 | ** files as no longer being part of the project. In other words, future |
| 377 | 377 | ** changes to the named files will not be versioned. |
| 378 | 378 | ** |
| 379 | 379 | ** Options: |
| 380 | -** --case-sensitive <BOOL> override case-sensitive setting | |
| 380 | +** --case-sensitive <BOOL> Override the case-sensitive setting. | |
| 381 | +** -n|--dry-run If given, display instead of run actions. | |
| 381 | 382 | ** |
| 382 | 383 | ** See also: addremove, add |
| 383 | 384 | */ |
| 384 | 385 | void delete_cmd(void){ |
| 385 | 386 | int i; |
| @@ -530,22 +531,23 @@ | ||
| 530 | 531 | ** The --ignore option overrides the "ignore-glob" setting, as do the |
| 531 | 532 | ** --case-sensitive option with the "case-sensitive" setting and the |
| 532 | 533 | ** --clean option with the "clean-glob" setting. See the documentation |
| 533 | 534 | ** on the "settings" command for further information. |
| 534 | 535 | ** |
| 535 | -** The -n|--dry-run option shows what would happen without actually doing anything. | |
| 536 | +** The -n|--dry-run option shows what would happen without actually doing | |
| 537 | +** anything. | |
| 536 | 538 | ** |
| 537 | 539 | ** This command can be used to track third party software. |
| 538 | 540 | ** |
| 539 | 541 | ** Options: |
| 540 | -** --case-sensitive <BOOL> override case-sensitive setting | |
| 541 | -** --dotfiles include files beginning with a dot (".") | |
| 542 | -** --ignore <CSG> ignore files matching patterns from the | |
| 542 | +** --case-sensitive <BOOL> Override the case-sensitive setting. | |
| 543 | +** --dotfiles Include files beginning with a dot (".") | |
| 544 | +** --ignore <CSG> Ignore files matching patterns from the | |
| 543 | 545 | ** comma separated list of glob patterns. |
| 544 | -** --clean <CSG> also ignore files matching patterns from | |
| 546 | +** --clean <CSG> Also ignore files matching patterns from | |
| 545 | 547 | ** the comma separated list of glob patterns. |
| 546 | -** -n|--dry-run If given, display instead of run actions | |
| 548 | +** -n|--dry-run If given, display instead of run actions. | |
| 547 | 549 | ** |
| 548 | 550 | ** See also: add, rm |
| 549 | 551 | */ |
| 550 | 552 | void addremove_cmd(void){ |
| 551 | 553 | Blob path; |
| @@ -710,11 +712,12 @@ | ||
| 710 | 712 | ** This command does NOT rename or move the files on disk. This command merely |
| 711 | 713 | ** records the fact that filenames have changed so that appropriate notations |
| 712 | 714 | ** can be made at the next commit/checkin. |
| 713 | 715 | ** |
| 714 | 716 | ** Options: |
| 715 | -** --case-sensitive <BOOL> override case-sensitive setting | |
| 717 | +** --case-sensitive <BOOL> Override the case-sensitive setting. | |
| 718 | +** -n|--dry-run If given, display instead of run actions. | |
| 716 | 719 | ** |
| 717 | 720 | ** See also: changes, status |
| 718 | 721 | */ |
| 719 | 722 | void mv_cmd(void){ |
| 720 | 723 | int i; |
| 721 | 724 |
| --- src/add.c | |
| +++ src/add.c | |
| @@ -236,16 +236,16 @@ | |
| 236 | ** be treated case sensitive or not. If the option is not given, the default |
| 237 | ** depends on the global setting, or the operating system default, if not set. |
| 238 | ** |
| 239 | ** Options: |
| 240 | ** |
| 241 | ** --case-sensitive <BOOL> override case-sensitive setting |
| 242 | ** --dotfiles include files beginning with a dot (".") |
| 243 | ** -f|--force Add files without prompting |
| 244 | ** --ignore <CSG> ignore files matching patterns from the |
| 245 | ** comma separated list of glob patterns. |
| 246 | ** --clean <CSG> also ignore files matching patterns from |
| 247 | ** the comma separated list of glob patterns. |
| 248 | ** |
| 249 | ** See also: addremove, rm |
| 250 | */ |
| 251 | void add_cmd(void){ |
| @@ -375,11 +375,12 @@ | |
| 375 | ** This command does NOT remove the files from disk. It just marks the |
| 376 | ** files as no longer being part of the project. In other words, future |
| 377 | ** changes to the named files will not be versioned. |
| 378 | ** |
| 379 | ** Options: |
| 380 | ** --case-sensitive <BOOL> override case-sensitive setting |
| 381 | ** |
| 382 | ** See also: addremove, add |
| 383 | */ |
| 384 | void delete_cmd(void){ |
| 385 | int i; |
| @@ -530,22 +531,23 @@ | |
| 530 | ** The --ignore option overrides the "ignore-glob" setting, as do the |
| 531 | ** --case-sensitive option with the "case-sensitive" setting and the |
| 532 | ** --clean option with the "clean-glob" setting. See the documentation |
| 533 | ** on the "settings" command for further information. |
| 534 | ** |
| 535 | ** The -n|--dry-run option shows what would happen without actually doing anything. |
| 536 | ** |
| 537 | ** This command can be used to track third party software. |
| 538 | ** |
| 539 | ** Options: |
| 540 | ** --case-sensitive <BOOL> override case-sensitive setting |
| 541 | ** --dotfiles include files beginning with a dot (".") |
| 542 | ** --ignore <CSG> ignore files matching patterns from the |
| 543 | ** comma separated list of glob patterns. |
| 544 | ** --clean <CSG> also ignore files matching patterns from |
| 545 | ** the comma separated list of glob patterns. |
| 546 | ** -n|--dry-run If given, display instead of run actions |
| 547 | ** |
| 548 | ** See also: add, rm |
| 549 | */ |
| 550 | void addremove_cmd(void){ |
| 551 | Blob path; |
| @@ -710,11 +712,12 @@ | |
| 710 | ** This command does NOT rename or move the files on disk. This command merely |
| 711 | ** records the fact that filenames have changed so that appropriate notations |
| 712 | ** can be made at the next commit/checkin. |
| 713 | ** |
| 714 | ** Options: |
| 715 | ** --case-sensitive <BOOL> override case-sensitive setting |
| 716 | ** |
| 717 | ** See also: changes, status |
| 718 | */ |
| 719 | void mv_cmd(void){ |
| 720 | int i; |
| 721 |
| --- src/add.c | |
| +++ src/add.c | |
| @@ -236,16 +236,16 @@ | |
| 236 | ** be treated case sensitive or not. If the option is not given, the default |
| 237 | ** depends on the global setting, or the operating system default, if not set. |
| 238 | ** |
| 239 | ** Options: |
| 240 | ** |
| 241 | ** --case-sensitive <BOOL> Override the case-sensitive setting. |
| 242 | ** --dotfiles include files beginning with a dot (".") |
| 243 | ** -f|--force Add files without prompting |
| 244 | ** --ignore <CSG> Ignore files matching patterns from the |
| 245 | ** comma separated list of glob patterns. |
| 246 | ** --clean <CSG> Also ignore files matching patterns from |
| 247 | ** the comma separated list of glob patterns. |
| 248 | ** |
| 249 | ** See also: addremove, rm |
| 250 | */ |
| 251 | void add_cmd(void){ |
| @@ -375,11 +375,12 @@ | |
| 375 | ** This command does NOT remove the files from disk. It just marks the |
| 376 | ** files as no longer being part of the project. In other words, future |
| 377 | ** changes to the named files will not be versioned. |
| 378 | ** |
| 379 | ** Options: |
| 380 | ** --case-sensitive <BOOL> Override the case-sensitive setting. |
| 381 | ** -n|--dry-run If given, display instead of run actions. |
| 382 | ** |
| 383 | ** See also: addremove, add |
| 384 | */ |
| 385 | void delete_cmd(void){ |
| 386 | int i; |
| @@ -530,22 +531,23 @@ | |
| 531 | ** The --ignore option overrides the "ignore-glob" setting, as do the |
| 532 | ** --case-sensitive option with the "case-sensitive" setting and the |
| 533 | ** --clean option with the "clean-glob" setting. See the documentation |
| 534 | ** on the "settings" command for further information. |
| 535 | ** |
| 536 | ** The -n|--dry-run option shows what would happen without actually doing |
| 537 | ** anything. |
| 538 | ** |
| 539 | ** This command can be used to track third party software. |
| 540 | ** |
| 541 | ** Options: |
| 542 | ** --case-sensitive <BOOL> Override the case-sensitive setting. |
| 543 | ** --dotfiles Include files beginning with a dot (".") |
| 544 | ** --ignore <CSG> Ignore files matching patterns from the |
| 545 | ** comma separated list of glob patterns. |
| 546 | ** --clean <CSG> Also ignore files matching patterns from |
| 547 | ** the comma separated list of glob patterns. |
| 548 | ** -n|--dry-run If given, display instead of run actions. |
| 549 | ** |
| 550 | ** See also: add, rm |
| 551 | */ |
| 552 | void addremove_cmd(void){ |
| 553 | Blob path; |
| @@ -710,11 +712,12 @@ | |
| 712 | ** This command does NOT rename or move the files on disk. This command merely |
| 713 | ** records the fact that filenames have changed so that appropriate notations |
| 714 | ** can be made at the next commit/checkin. |
| 715 | ** |
| 716 | ** Options: |
| 717 | ** --case-sensitive <BOOL> Override the case-sensitive setting. |
| 718 | ** -n|--dry-run If given, display instead of run actions. |
| 719 | ** |
| 720 | ** See also: changes, status |
| 721 | */ |
| 722 | void mv_cmd(void){ |
| 723 | int i; |
| 724 |