How to manually deploy direct from Bitbucket to Google App Engine?

前端 未结 1 1855
自闭症患者
自闭症患者 2021-01-23 21:29

To manually deploy from a changed source on a Bitbucket repository (named trackfind) to a Google App Engine app (ID trackfind-1) , I\'m doing this:

1 Go to https://conso

1条回答
  •  情话喂你
    2021-01-23 22:04

    You could speedup things a bit by re-using the existing trackfind repository:

    1. Enter cd trackfind

    2. Enter git checkout master; git pull

    This will only pull the delta changes since the last deployment, which can be significantly faster than re-pulling the entire repository from scratch, especially if it's a large repository and/or it has a long change history.

    0 讨论(0)
提交回复
热议问题