Skip to content

Commit cac06db

Browse files
committed
fixing reported issues
1 parent 92bb800 commit cac06db

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

articles/data-factory/source-control.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ The configuration pane shows the following GitHub repository settings:
160160

161161
- A maximum of 1,000 entities per resource type (such as pipelines and datasets) can be fetched from a single GitHub branch. If this limit is reached, is suggested to split your resources into separate factories. Azure DevOps Git does not have this limitation.
162162

163-
164163
## Version control
165164

166165
Version control systems (also known as _source control_) let developers collaborate on code and track changes that are made to the code base. Source control is an essential tool for multi-developer projects.
@@ -177,15 +176,15 @@ When you are ready to merge the changes from your feature branch to your collabo
177176

178177
### Configure publishing settings
179178

180-
To configure the publish branch - that is, the branch where Resource Manager templates are saved - add a `publish_config.json` file to the root folder in the collaboration branch. Data Factory reads this file, looks for the field `publishBranch`, and creates a new branch (if it doesn't already exist) with the value provided. Then it saves all Resource Manager templates to the specified location. For example:
179+
By default, data factory generates the Resource Manager templates of the published factory and saves them into a branch called `adf_public`. To configure a custom publish branch, add a `publish_config.json` file to the root folder in the collaboration branch. When publishing, ADF reads this file, looks for the field `publishBranch`, and saves all Resource Manager templates to the specified location. If the branch doesn't exist, data factory will automatically create it. And example of what this file looks like is below:
181180

182181
```json
183182
{
184183
"publishBranch": "factory/adf_publish"
185184
}
186185
```
187186

188-
When you specify a new publish branch, Data Factory doesn't delete the previous publish branch. If you want to remove the previous publish branch, delete it manually.
187+
Azure Data Factory can only have one publish branch at a time. When you specify a new publish branch, Data Factory doesn't delete the previous publish branch. If you want to remove the previous publish branch, delete it manually.
189188

190189
> [!NOTE]
191190
> Data Factory only reads the `publish_config.json` file when it loads the factory. If you already have the factory loaded in the portal, refresh the browser to make your changes take effect.

0 commit comments

Comments
 (0)