On Thu, 2009-11-12 at 05:06 +0800, Barry Kauler wrote: > It seems that I > have to add one file at a time, but what if I have put a lot of stuff > into my source tree, do I then have to go and run 'add' on each file? > ...that seems error-prone also. Or, am I missing something still?
You can use shell wildcards, e.g., `fossil add *.rb` and if you add a directory, all contents are added recursively. And it doesn't hurt to re-add things that have already been added. So if everything in your source tree is supposed to be in the repository, you can `fossil add .` and everything you just added will be added to the repo in one go. -- Joshua Paine LetterBlock: Web applications built with joy http://letterblock.com/ 301-576-1920 _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

