Skip to content

Commit 35c9e2b

Browse files
authored
Merge pull request #542 from mono/develop-merge
fix merge conflict for change master-main
2 parents 2445986 + 522b5aa commit 35c9e2b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are working in an area of the code that has transitioned to the new codin
3737

3838
This project tries to avoid chatty in-progress commits that are common during development. Once you’ve completed your development and are ready to move to the next stage of the contribution workflow, collapse your changes into as few feature-scoped commits as possible. Ideally if possible, every commit should pass all unit tests and be standalone.
3939

40-
You can do so either by using an interactive rebase of your branch if you need multiple commits, or simply doing a soft reset `git reset origin/master —soft` … which will stage all of your changes and let you create a new single commit that contains all changes.
40+
You can do so either by using an interactive rebase of your branch if you need multiple commits, or simply doing a soft reset `git reset origin/main —soft` … which will stage all of your changes and let you create a new single commit that contains all changes.
4141

4242
The commit message should be verbose enough to explain what behavior is changing, bug is being fixed, or feature being added. It should also contain a reference to the github issue being resolved, as [described here](https://github.com/blog/1386-closing-issues-via-commit-messages).
4343

azure-pipelines.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,10 @@ steps:
9696
inputs:
9797
PathtoPublish: '$(Build.ArtifactStagingDirectory)/zips'
9898
ArtifactName: 'mdoc.Artifact'
99-
10099
- task: PowerShell@2
101100
name: 'mdocVersion'
102101
displayName: 'Checking remote and local version of mdoc'
103-
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
102+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
104103
inputs:
105104
filePath: 'mdoc/CheckNugetPublish.ps1'
106105

mdoc/mdoc.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<authors>Microsoft</authors>
88
<owners>Microsoft</owners>
99
<projectUrl>https://github.com/mono/api-doc-tools</projectUrl>
10-
<licenseUrl>https://github.com/mono/api-doc-tools/blob/master/LICENSE.md</licenseUrl>
10+
<licenseUrl>https://github.com/mono/api-doc-tools/blob/main/LICENSE.md</licenseUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<description>.NET API Documentation toolchain</description>
1313
<copyright>© Microsoft Corporation. All rights reserved.</copyright>

0 commit comments

Comments
 (0)