On Fri, Dec 2, 2011 at 7:36 PM, Oliver Friedrich <beowul...@gmx.de> wrote:

> i'm testing out fossil for my source, found an interesting issue.
>
> Checking in files and folders leaves out hidden files, on linux starting
> with a ".".
>
> How can I get fossil to check those files in?
>

Unix doesn't actually have "hidden files" per se - the _convention_ of a
preceeding dot is supported by many tools, though. One of those is shell
wildcards, which do NOT match a dot character. Try:

fossil add .[a-zA-Z]*

for example, and you'll get the behaviour you want.

-- 
----- stephan beal
http://wanderinghorse.net/home/stephan/
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to