How can I deploy direct from Google Cloud Source Repository to Google App Engine?

只愿长相守 提交于 2019-11-29 16:52:40

The best way to do this would be to clone the repository to your machine (or Cloud Shell), then use the App Engine deploy tool (https://cloud.google.com/appengine/docs/php/getting-started/deploying-to-app-engine) to deploy your app.

e.g.

gcloud source repos clone $REPO
cd $REPO
gcloud app deploy app.yaml
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!