Diff
Not logged in

Differences From:

File src/checkin.c part of check-in [7a2c37063a] - merge trunk into creole branch by bob on 2009-09-22 07:49:39. Also file src/checkin.c part of check-in [a2749215b7] - Add the --dotfiles option to the "extra" and "clean" commands. Ticket 4de876322f066. by drh on 2009-09-19 15:32:14. [view]

To:

File src/checkin.c part of check-in [5308e46815] - Fix the "clean" command to use --force instead of --all. Ticket c3d668ad52 by drh on 2009-10-11 19:52:21. [view]

@@ -207,9 +207,9 @@
 ** the "extra" command. This operation cannot be undone.
 **
 ** You will be prompted before removing each file. If you are
 ** sure you wish to remove all "extra" files you can specify the
-** optional --force flag and no prmpts will be issued.
+** optional --force flag and no prompts will be issued.
 **
 ** Files and subdirectories whose names begin with "." are
 ** normally ignored.  They are included if the "--dotfiles" option
 ** is used.
@@ -219,9 +219,9 @@
   int dotfilesFlag;
   Blob path, repo;
   Stmt q;
   int n;
-  allFlag = find_option("all","a",0)!=0;
+  allFlag = find_option("force","f",0)!=0;
   dotfilesFlag = find_option("dotfiles",0,0)!=0;
   db_must_be_within_tree();
   db_multi_exec("CREATE TEMP TABLE sfile(x TEXT PRIMARY KEY)");
   n = strlen(g.zLocalRoot);