Amazon-Web-Services

使用 eb CLI 時是否可以在不使用 git 的情況下進行部署?

  • March 25, 2022

有什麼方法可以使用 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 送出的文件。

引用自:https://serverfault.com/questions/694491