Introduction to CI/CD
Get an introduction to Continuous Integration and Continuous Deployment.
CI/CD
CI/CD stands for Continuous Integration and Continuous Deployment. Let’s quickly review the two terms individually.
Continuous integration
“Integrate what?”, you may ask yourself. The answer is source code, and making sure code written by various team members is merged into a single default branch as frequently as possible. This ...