Skip to main content

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​

StrategyUse Case
Trunk-basedSmall teams, continuous deployment
GitFlowLarge teams, release cycles
Feature branchesStandard development workflow

See Also​