Version control (Git) हा CI/CD चा आधार आहे — repository मधील code changes pipeline trigger करतात, आणि branching strategies CI/CD कसे चलते हे ठरवतात. Git आणि CI/CD चे integration हेच automated, change-driven delivery सक्षम करते.
Git triggers CI/CD
CI/CD pipelines are TRIGGERED by Git events:
→ a PUSH to a branch → runs CI (build + test) on that change
→ a PULL REQUEST → runs CI to verify the change before merging
→ a MERGE to main → may trigger deployment (CD)
→ a TAG (e.g. v1.2.0) → may trigger a release/production deployment
→ Every code change in Git automatically drives the pipeline → change-driven automation.
