在rsync中包含与其他名称相同的文件夹

时间:2016-04-09 15:37:38

标签: rsync

所以我有这段代码:

rsync \
   --archive \
   --verbose \
   --compress \
   --delete \
   --no-motd \
   --exclude=.git* \
   --exclude=.idea \
   --exclude=.tags \
   --exclude=vendor \
   --exclude=tags \
   --exclude=node_modules \
   --rsync-path="sudo rsync" \
   "${src}"/ \
   "${profile}":"${dst}"

它很漂亮!但我有一个问题......这个树结构:

.
├── app
│   ├── vendor/
├── vendor/

它不起作用。我只想排除./vendor,但要包含./app/vendor。我已尝试使用--include,但结果相同:app/vendor始终被排除。

0 个答案:

没有答案