我已经设置了代码从 git repo中提取并推送到我设置的远程站点。一切运行良好,除了我的所有文件都被克隆到我的站点的安装根目录中 - 而我需要将它们推送到远程目录 ( /wp-content/plugins/
)。
我设置的部署脚本如下:
git remote add production git@git.wpengine.com:production/${REPO_SLUG}.git
git config --global user.email "CodeShip-Deploy-Bot@site.com"
git config --global user.name "CodeShop Deploy Bot"
git commit -m "DEPLOYMENT"
git push -f production master
无论如何我可以指定这些文件也被推送到哪里?我试图避免重新构建我的 github 存储库文件结构。