In git mode, when we want to test a pipeline, ADF forces us to publish first. Publish action does two things is my understanding
But to get the 'Publish' button enabled, we need to be in collaboration branch. This means no two people can work at the same time on a DEV ADF. As both people will be asked to publish by ADF before they could test the pipeline they are building.
If this is the case then why is there an option for us to connect another branch other than collaboration branch? (by changing it from the drop down)
Also what is a 'working branch'?
As we know, we only can 'Publish' in collaboration branch and changes are being pushed to to "adf_publish" branch by default. By default, the collaboration branch is named main
.
Working on the own branch, we can validate and debug the pipeline to make sure everything is ok.
Then click save all
, it will commit on the own branch. If we want publish, we need to creat a pull request to the main
branch.
4.After merged to the main
branch, we can publish to the adf_publish
branch.