rsync 过滤参数
-av 目录
--include="需要的的文件"
/usr/bin/rsync -av ./dist/ --no-owner --include=".htaccess" --no-group -e "ssh -p 22 -l root" \
--delete \
--exclude=log \
--exclude=opcache \
--exclude=.git \
--exclude=.eslintrc.js \
--exclude=.*.sw? \
"$WORKSPACE"/dist/* 10.40.11.84:"$DEPLOY_DST_DIR"/ 2>&1
``