Control de versiones (Git) es la base sobre la que se construye CI/CD — los cambios de código en el repositorio disparan pipelines, y las estrategias de ramificación determinan cómo se ejecuta CI/CD. La integración de Git y CI/CD es lo que permite la entrega automatizada impulsada por cambios.
Por qué es importante
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.
