History Of Ticket 4e8410bfd6
Not logged in
Ticket change [31a243f74e] (rid 4104) by kkinnell on 2008-12-12 07:36:50:
  1. Change severity to "Minor"
  2. Change status to "Deferred"
Ticket change [97a058ba36] (rid 4100) by anonymous on 2008-12-09 23:17:26:
  1. Appended to comment:

    anonymous claiming to be Ilia Frenkel added on 2008-12-09 23:17:26:
    After the second thought I do agree with you. It is not so urgent feature. If you keep your source tree clean you should be OK without it.

Ticket change [2e8be91f64] (rid 4097) by kkinnell on 2008-12-09 17:03:54:
  1. Appended to comment:

    kkinnell added on 2008-12-09 17:03:54:
    If you are using a shell that follows the unix conventions, dot files—files that start with a '.' character—will be ignored unless they are explicitly included.

    As an example, if you have files named '.file' and '.faxes', and want to add them using globbing you'd type:

        fossil add .f*
    To get all of your dot files you'd need to be a little trickier, because '.' and '..' are directory names. In bash you'd use
        fossil add .[^.]*

    The point is that the dot files are being intercepted by the shell on non-Windows systems, and may be being intercepted on Windows systems—dot files are a bit problematic and you have to be careful about them.

    IMHO:
    The CVSIGNORE isn't actually that useful if you are not creating a new repository from a clean source tree, or not using a recursive add. Until the recursive add fix (see e02ffabcda) there wasn't any way to get fossil to add files that were not explicitly requested. You could still get unwanted files by injudicious file globbing, but that wasn't fossil's fault. Personally, I probably won't use recursive add on an 'as is' source tree. I'll clean it up until it only contains the files I want, then add them, and maybe then copy the, er, "unclean" source tree back.

  2. Change resolution to "Open"
Ticket change [fdcbc34c4d] (rid 4077) by anonymous on 2008-12-07 03:26:39:
  1. Change comment to "It would be nice to have such feature as cvsignore one. I know that it is frequently asked question, but found no such feature request. Also, it looks like fossil will silently ignore any file or directory which name starts from "."."
  2. Change private_contact to "02d14714de84a7dab506bb77b9dd95e78f1c1491"
  3. Change severity to "Important"
  4. Change status to "Open"
  5. Change title to "Add something similar to cvsignore feature"
  6. Change type to "Feature_Request"