TLDR; How do I only push to CodeDeploy the changes that have been made from CodeCommit?
I built a simple CI/CD Pipeline with CodePipeline in which I commit to CodeCommit and then it deploys the code using CodePipeline to my Elastic Beanstalk application.
The problem is that it seems like it simply copies the entire application and puts it online. In this way, it removes all of the logs that I had previously on the server. For example, anything that was in .gitignore will not only not be submitted to git, but if this was previously on the server, then it will be removed.
Any comments or suggestions are greatly appreciated! ❤️
Thanks!