【发布时间】:2019-09-23 13:49:01
【问题描述】:
我正在使用 rsync 命令将 symfony 4 项目部署到远程服务器,每次我进行新的更改时,该命令都会部署所有项目的文件而不是新文件!添加哪个选项来告诉 rsync 应该只传输新的更改!
我正在使用这样的 rsync:
rsync -av LocalProjectPath RemotePerverPath --include=public/.htaccess --include=public/build --include=vendor --exclude=".*"
【问题讨论】:
标签: symfony deployment rsync remote-server