Fossil

Check-in [a3ecba52f0]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Online help for the first few commands edited - to help with very long explanations, the command is summarised at the end for those who just want to check the precise options
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | arjen-doc-updates
Files: files | file ages | folders
SHA1: a3ecba52f03cc3bfb42df7c9d3ae33d67915a6f6
User & Date: Arjen Markus 2011-04-13 11:47:32.332
Context
2011-04-18
10:04
Added some information on how to build on Windows ... (check-in: 963a38d5a7 user: Arjen Markus tags: arjen-doc-updates)
2011-04-14
01:05
Merge Arjen's documentation updates into trunk. ... (check-in: b0d1510578 user: drh tags: trunk)
2011-04-13
11:47
Online help for the first few commands edited - to help with very long explanations, the command is summarised at the end for those who just want to check the precise options ... (check-in: a3ecba52f0 user: Arjen Markus tags: arjen-doc-updates)
10:23
Online help for the first few commands edited - to help with very long explanations, the command is summarised at the end for those who just want to check the precise options ... (check-in: 1f851f8467 user: Arjen Markus tags: arjen-doc-updates)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/add.c.
413
414
415
416
417
418
419
420

421
422
423
424
425
426
427
** documentation on the "settings" command for further information.
**
** The --test option shows what would happen without actually doing anything.
**
** This command can be used to track third party software.
**
**
** SUMMARY: fossil addremove ?--dotfiles? ?--ignore GLOBPATTERN? ?--test?

*/
void import_cmd(void){
  Blob path;
  const char *zIgnoreFlag = find_option("ignore",0,1);
  int allFlag = find_option("dotfiles",0,0)!=0;
  int isTest = find_option("test",0,0)!=0;
  int n;







|
>







413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
** documentation on the "settings" command for further information.
**
** The --test option shows what would happen without actually doing anything.
**
** This command can be used to track third party software.
**
**
** SUMMARY: fossil addremove
** Options: ?--dotfiles? ?--ignore GLOBPATTERN? ?--test?
*/
void import_cmd(void){
  Blob path;
  const char *zIgnoreFlag = find_option("ignore",0,1);
  int allFlag = find_option("dotfiles",0,0)!=0;
  int isTest = find_option("test",0,0)!=0;
  int n;