On Oct 19, 2009, at 11:36, Dominik Faessler, WAS GmbH wrote:
We found a bug in mirror command. We've done 'mirror -Rv --ignore- time -x .git' to upload files onto an empty remote directory. LFTP ignores files with the name 'Digits.php'.
-x takes a regular expression and the dot in regular expressions matches any character. "igit" in Digits.php is a match for ".git".
You probably wanted -x \.git$ instead.
