使用 eb CLI 时,是否可以不使用 git 进行部署?

使用 eb CLI 时,是否可以不使用 git 进行部署?

有没有办法使用 AWS EB CLI 来推送我的项目的当前状态而不是特定的提交?

也许除了中的参数git之外还有其他值吗?scconfig.yml

答案1

在项目根目录中添加一个名为 .ebignore 的文件。

在文件中,添加以下行

.git/

现在所有部署都将使用 .ebignore 文件和项目的当前状态,而不是使用 git 提交。

答案2

你可以添加

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 ofeb deploy --staged`,则会部署在 git 索引中暂存的文件,而不是 HEAD 提交。

相关内容