Amazon-Web-Services
使用 eb CLI 時是否可以在不使用 git 的情況下進行部署?
有什麼方法可以使用 AWS EB cli 來推送我的項目的目前狀態而不是特定的送出?
git
也許除了sc
參數 in之外還有其他值config.yml
嗎?
在項目根目錄中添加一個名為 .ebignore 的文件。
在文件中,添加行
.git/
現在所有部署都將使用 .ebignore 文件和項目的目前狀態,而不是使用 git 送出。
你可以添加
git init git checkout -b master git add . git status git commit -m "First Commit"
每次添加新程式碼時,如果您不
t want to add for commit could just use first deploy for files that you do make always new commits use command of
使用 eb deploy –staged` 部署暫存於 git 索引而不是 HEAD 送出的文件。