Skip to content
This repository was archived by the owner on Jan 21, 2026. It is now read-only.

Commit 3ffaa53

Browse files
authored
Merge branch 'master' into pdt-0731-agentpools
2 parents 7168530 + 843cbd2 commit 3ffaa53

9 files changed

Lines changed: 553 additions & 550 deletions

Instructions/Labs/AZ400_M02_L02_Version_Controlling_with_Git_in_Azure_Repos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ In this exercise, you will use the Azure DevOps portal to review history of comm
217217
218218
Git uses the parent reference information stored in each commit to manage a full history of your development. You can easily review this commit history to find out when file changes were made and determine differences between versions of your code using the terminal or from one of the many available Visual Studio Code extensions. You can also review changes by using the Azure DevOps portal.
219219
220-
Git's use of the **Branches and Merges** feature works through pull requests, so the commit history of your development doesn't necessarily form a straight, chronological line. When you use history to compare versions, think in terms of file changes between two commits instead of file changes between two points in time. A recent change to a file in the master branch may have come from a commit created two weeks ago in a feature branch that was merged yesterday.
220+
Git's use of the **Branches and Merges** feature works through pull requests, so the commit history of your development doesn't necessarily form a straight, chronological line. When you use history to compare versions, think in terms of file changes between two commits instead of file changes between two points in time. A recent change to a file in the main branch may have come from a commit created two weeks ago in a feature branch that was merged yesterday.
221221
222222
#### Task 1: Compare files
223223
@@ -243,7 +243,7 @@ In this exercise, you will step through scenarios that involve branch management
243243
244244
You can manage in your Azure DevOps Git repo from the **Branches** view of **Azure Repos** in the Azure DevOps portal. You can also customize the view to track the branches you care most about so you can stay on top of changes made by your team.
245245
246-
Committing changes to a branch will not affect other branches and you can share branches with others without having to merge the changes into the main project. You can also create new branches to isolate changes for a feature or a bug fix from your master branch and other work. Since the branches are lightweight, switching between branches is quick and easy. Git does not create multiple copies of your source when working with branches, but rather uses the history information stored in commits to recreate the files on a branch when you start working on it. Your Git workflow should create and use branches for managing features and bugfixes. The rest of the Git workflow, such as sharing code and reviewing code with pull requests, all work through branches. Isolating work in branches makes it very simple to change what you are working on by simply changing your current branch.
246+
Committing changes to a branch will not affect other branches and you can share branches with others without having to merge the changes into the main project. You can also create new branches to isolate changes for a feature or a bug fix from your main branch and other work. Since the branches are lightweight, switching between branches is quick and easy. Git does not create multiple copies of your source when working with branches, but rather uses the history information stored in commits to recreate the files on a branch when you start working on it. Your Git workflow should create and use branches for managing features and bugfixes. The rest of the Git workflow, such as sharing code and reviewing code with pull requests, all work through branches. Isolating work in branches makes it very simple to change what you are working on by simply changing your current branch.
247247
248248
#### Task 1: Create a new branch in your local repository
249249

Instructions/Labs/AZ400_M03_L03_Configuring_Agent_Pools_and_Understanding_Pipeline_Styles.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ In this exercise, you will implement a self-hosted Azure DevOps agent.
9696
In this task, you will configure your lab Virtual Machine as an Azure DevOps self-hosting agent and use it to run a build pipeline.
9797

9898
1. Within the Lab Virtual machine (Lab VM) or your own computer, start a web browser, navigate to [the Azure DevOps portal](https://dev.azure.com) and sign in by using the Microsoft account associated with your Azure DevOps organization.
99-
> **Note**: The Lab Virtual machine should have all necessary prerequisite software installed. If you are installing on your own computer, you will need to install Visual Studio 2022 Community Edition and the .NET SDKs necessary to build the demo project.
99+
100+
> **Note**: The Lab Virtual machine should have all necessary prerequisite software installed. If you are installing on your own computer, you will need to install Visual Studio 2022 Community Edition and the .NET SDKs necessary to build the demo project.
101+
100102
2. In the Azure DevOps portal, in the upper right corner of the Azure DevOps page, click the **User settings** icon, depending on whether or not you have preview features turned on, you should either see a **Security** or **Personal access tokens** item in the menu, if you see **Security**, click on that, then select **Personal access tokens**. On the **Personal Access Tokens** pane, and click **+ New Token**.
101103
3. On the **Create a new personal access token** pane, click the **Show all scopes** link and, specify the following settings and click **Create** (leave all others with their default values):
102104

@@ -172,8 +174,8 @@ In this task, you will configure your lab Virtual Machine as an Azure DevOps sel
172174
> **WARNING**: Be careful with copy/paste, make sure you have same indentation shown above.
173175
174176
23. On the **EShopOnWeb** edit pane, in the upper right corner of the pane, click **Save** and, on the **Save** pane, click **Save** again. This will automatically trigger the build based on this pipeline.
175-
25. In the Azure DevOps portal, in the vertical navigational pane on the left side, in the **Pipelines** section, click **Pipelines**.
176-
26. On the **Recent** tab of the **Pipelines** pane, click the **EShopOnWeb** entry, on the **Runs** tab of the **EShopOnWeb** pane, select the most recent run, on the **Summary** pane of the run, scroll down to the bottom, in the **Jobs** section, click **Phase 1** and monitor the job until its successful completion.
177+
24. In the Azure DevOps portal, in the vertical navigational pane on the left side, in the **Pipelines** section, click **Pipelines**.
178+
25. On the **Recent** tab of the **Pipelines** pane, click the **EShopOnWeb** entry, on the **Runs** tab of the **EShopOnWeb** pane, select the most recent run, on the **Summary** pane of the run, scroll down to the bottom, in the **Jobs** section, click **Phase 1** and monitor the job until its successful completion.
177179
178180
## Review
179181

Instructions/Labs/AZ400_M03_L04_Enabling_Continuous_Integration_with_Azure_Pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In this task you will import the eShopOnWeb Git repository that will be used by
5454
- **.devcontainer** folder container setup to develop using containers (either locally in VS Code or GitHub Codespaces).
5555
- **.azure** folder contains Bicep & ARM infrastructure as code templates used in some lab scenarios.
5656
- **.github** folder contains YAML GitHub workflow definitions.
57-
- **src** folder contains the .NET 6 website used in the lab scenarios.
57+
- **src** folder contains the .NET website used in the lab scenarios.
5858

5959
### Exercise 1: Include build validation as part of a Pull Request
6060

Instructions/Labs/AZ400_M05_L08_Configuring_Pipelines_as_Code_with_YAML.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ In this task, you will add continuous delivery to the YAML-based definition of t
206206

207207
> **Note**: Here as well you may also want to add an empty line before and after to make it easier to read.
208208

209-
16. Click **Save**, on the **Save** pane, click **Save** again to commit the change directly into the master branch.
209+
16. Click **Save**, on the **Save** pane, click **Save** again to commit the change directly into the main branch.
210210

211211
> **Note**: Since our original CI-YAML was not configured to automatically trigger a new build, we have to initiate this one manually.
212212

0 commit comments

Comments
 (0)