所以我有这段代码:
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
始终被排除。