Reputation: 51
After building up a customized inherited process in Azure DevOps, how can I copy this process to an other organization?
Upvotes: 5
Views: 2591
Reputation: 41775
There is a tool that developed by Microsoft: VSTS Process Migrator.
Install it:
npm install process-migrator -g
Run the tool:
process-migrator --mode=migrate(default)/imoport/export --config=<config-file-path>
Upvotes: 3