Re: daemon excludes all my files

2006-09-25 Thread Timothy Madden
On 9/24/06, Matt McCutchen <[EMAIL PROTECTED]> wrote: The trouble is that your .* exclude pattern is matching . , the top level of the module, because * can match the empty string: > skipping server-excluded file "." If your intent was to match hidden files, change the pattern to .?* to match a

Re: daemon excludes all my files

2006-09-23 Thread Matt McCutchen
The trouble is that your .* exclude pattern is matching . , the top level of the module, because * can match the empty string: skipping server-excluded file "." If your intent was to match hidden files, change the pattern to .?* to match a period followed by at least one character. Are you su

daemon excludes all my files

2006-09-18 Thread Timothy Madden
Hello I am new to rsync but I started the cwRsyncServer daemon on an Windows 2003 Server machine with this exclude option: exclude = *.obj Debug *~ *.bak *.orig .svn Thumbs.db Copy?of?* Kopie?van?* .* This option I have placed in the global section so I won't have to repeat it on every module.