
Answer-first summary for fast verification
Answer: From featuredev, create a pull request.
## Explanation In Azure Synapse Analytics with Azure Repos integration, the standard Git workflow follows a feature branch strategy where development occurs in feature branches (like `featuredev`) and changes are merged into the collaboration branch (typically `main`) through pull requests. **Why Option A is correct:** - When working in a feature branch (`featuredev`), the proper first step to publish changes is to create a pull request from the feature branch to the collaboration branch (`main`) - This follows Azure DevOps best practices for code review and controlled deployment - The pull request process allows for code review, validation, and proper integration before changes are published to the collaboration branch **Why other options are incorrect:** - **Option B**: Creating a pull request from `main` is incorrect because `main` is the collaboration branch that should receive changes from feature branches, not initiate them - **Option C**: Adding a `Publish_config.json` file is not part of the standard publishing workflow in Azure Synapse Analytics with Git integration - **Option D**: Switching to live mode is not the first step; this typically happens after changes are merged into the collaboration branch and the workspace is in Git mode The correct sequence is: develop in feature branch → create pull request to main → review and merge → publish changes from the collaboration branch.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You have an Azure subscription containing an Azure Synapse Analytics account integrated with an Azure Repos repository named Repo1. The repository contains the following branches: main, featuredev, and release. You have developed and tested changes to Pipeline1 in the featuredev branch.
You need to publish the changes.
What should you do first?

A
From featuredev, create a pull request.
B
From main, create a pull request.
C
Add a Publish_config.json file to the root folder of the collaboration branch.
D
Switch to live mode.
No comments yet.