Diff
Not logged in

Differences From:

File src/checkin.c part of check-in [b714ab1ea7] - Add the --proxy option to the commit and update commands. by drh on 2008-05-07 12:15:14. [view]

To:

File src/checkin.c part of check-in [6b85fd173e] - Help message cleanup. Automatically delete cloned database files if the clone fails. by drh on 2008-05-10 18:01:52. [view]

@@ -76,8 +76,9 @@
 /*
 ** COMMAND: changes
 **
 ** Usage: %fossil changes
+**
 ** Report on the edit status of all files in the current checkout.
 ** See also the "status" and "extra" commands.
 */
 void changes_cmd(void){
@@ -92,9 +93,11 @@
 }
 
 /*
 ** COMMAND: status
+**
 ** Usage: %fossil status
+**
 ** Report on the status of the current checkout.
 */
 void status_cmd(void){
   int vid;
@@ -111,9 +114,11 @@
 }
 
 /*
 ** COMMAND: ls
+**
 ** Usage: %fossil ls
+**
 ** Show the names of all files in the current checkout
 */
 void ls_cmd(void){
   int vid;
@@ -144,8 +149,9 @@
 
 /*
 ** COMMAND: extra
 ** Usage: %fossil extra
+**
 ** Print a list of all files in the source tree that are not part of
 ** the current checkout.  See also the "clean" command.
 */
 void extra_cmd(void){
@@ -167,9 +173,10 @@
 }
 
 /*
 ** COMMAND: clean
-** Usage: %fossil clean ?-all
+** Usage: %fossil clean ?-all?
+**
 ** Delete all "extra" files in the source tree.  "Extra" files are
 ** files that are not officially part of the checkout.  See also
 ** the "extra" command. This operation cannot be undone.
 **