History Of Ticket c3d668ad52
Not logged in
Ticket change [8c7350ea85] (rid 5419) by anonymous on 2009-10-11 20:29:39:
  1. Appended to comment:

    anonymous added on 2009-10-11 20:29:39:
    Thanks!

    Also, here's an update for www/reference.wiki, since it has the old -all option and lacked --dotfiles.

    --- www/reference.wiki
    +++ www/reference.wiki
    @@ -214,18 +214,22 @@
         unless the "--nosign" options is used.  All files that have
         changed will be committed unless some subset of files is specified
         on the command line.
     
     <hr><a href="#tof">&#710;</a>
    -    <a name="clean">Usage: </a><a href="cmd_clean.wiki">fossil clean</a> ?-all?
    +    <a name="clean">Usage: </a><a href="cmd_clean.wiki">fossil clean</a> ?--force? ?--dotfiles?
         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.
     
         You will be prompted before removing each file. If you are
         sure you wish to remove all "extra" files you can specify the
    -    optional -all flag.
    +    optional --force flag and no prmpts will be issued.
    +
    +    Files and subdirectories whose names begin with "." are
    +    normally ignored.  They are included if the "--dotfiles" option
    +    is used.
     
     <hr><a href="#tof">&#710;</a>
         <a name="clone">Usage: </a><a href="cmd_clone.wiki">fossil clone</a> URL FILENAME
         Make a clone of a repository specified by URL in the local
         file named FILENAME.
    
Ticket change [f53de0ceaf] (rid 5417) by drh on 2009-10-11 19:53:14:
  1. Appended to comment:

    drh added on 2009-10-11 19:53:14:
    Check-in 5308e468153

  2. Change resolution to "Fixed"
  3. Change status to "Fixed"
  4. Change type to "Code_Defect"
Ticket change [86859cb831] (rid 5410) by anonymous on 2009-10-11 18:51:15:
  1. Change comment to "Either documentation or code is wrong about the "clean" command option to disable prompt before removing files. Documentation says: <pre> $ fossil help clean Usage: fossil clean ?--force? ?--dotfiles? ... 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. </pre> However, --force doesn't work (Fossil asks before removing files). Code in <code>checkin.c</code> ([2e4a6e1c0f]) says it wants "--all" option: <pre> allFlag = find_option("all","a",0)!=0; </pre> And "--all" option actually works. So either code or documentation needs to be updated."
  2. Change foundin to "b99aa66d1f"
  3. Change private_contact to "05f652db744266759b20d248ec2f451629420388"
  4. Change status to "Open"
  5. Change title to ""clean" command has an option --all, but documentation says it's --force"
  6. Change type to "Documentation"