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
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
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.