EB CLI does not currently support incremental downloads of your application. Each time you use eb deployit will close your entire project and load it as a new version of the application.
EDIT:
Starting with version 3.8.0, the EB CLI now supports AWS CodeCommit.
You can configure the current git repository to work with code commit using the following commands.
$ eb codesource codecommit
What you walk through an interactive installation to use AWS CodeCommit. It is supported by the CLI CL for deploying incremental git, which is committed to the CodeCommit repository and then deployed to your Elastic Beanstalk environment.
For more information, check out the docs .
source
share