Rsync正在复制目的地中存在的文件。当我使用--itemize-changes
运行它时,这是99%的文件的前缀。
>f..T......
我试图用以下标志忽略所有内容:
rsync
--itemize-changes
--compress
--ignore-times
--no-times
--no-perms
--no-owner
--no-group
--recursive
--delete
--exclude='.git'
source destination
T
是时候了,为什么不会--no-times
导致rsync跳过这些文件?