Version Control
ProAI integrates with Git for complete version control of all pipeline definitions.
Workflow
`ash
Create a feature branch
git checkout -b feature/new-pipeline
Make changes in the Designer
... design your pipeline ...
Commit changes
proai commit -m "Add user analytics pipeline"
Push to remote
git push origin feature/new-pipeline
Create a pull request for review
proai pr create `
Branch Strategies
| Strategy | Use Case |
|---|---|
| Trunk-based | Small teams, continuous deployment |
| GitFlow | Large teams, release cycles |
| Feature branches | Standard development workflow |
See Also
- Projects & Repos — Repository management
- Snapshots — Pipeline snapshots