Skip to content

Commit c11f58c

Browse files
authored
Wording tweaks from test run.
1 parent ac40b1c commit c11f58c

File tree

6 files changed

+21
-19
lines changed

6 files changed

+21
-19
lines changed

.github/steps/1-step.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### What is a merge conflict?
44

5-
A **merge conflict** occurs when changes are made to the same part of the same file on two different branches. You usually find out about conflicts in a pull request so let's start by creating one.
5+
A **merge conflict** occurs when changes are made to the same part of the same file on two different branches.
66

77
```mermaid
88
gitGraph
@@ -34,11 +34,11 @@ gitGraph
3434

3535
### ⌨️ Activity: Create a pull request
3636

37-
To quickly practice, we already created the above scenario for you by making a new branch `my-resume` then modifying `resume.md` on both branches, will will cause a conflict. Let's practice with it!
37+
To quickly practice, we already created the above scenario for you by making a new branch `my-resume` then modifying `resume.md` on both branches, which will will cause a conflict. Let's practice with it!
3838

3939
1. Open this repo in a new browser tab, and work on the steps in your second tab while you read the instructions in this tab.
4040

41-
1. In the top navigation, select the **Pull Requests** tab.
41+
1. In the top navigation, select the **Pull requests** tab.
4242

4343
1. Click the **New pull request** button and use the following settings:
4444

.github/steps/2-step.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ You typically have 3 options for managing a conflict:
99
1. Manually combined the changes from both branches.
1010

1111
> [!TIP]
12-
> You can learn more about managing conflicts with on the [GitHub Docs: resolve the conflict](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line) page.
12+
> You can learn more about managing conflicts on the [GitHub Docs: resolve the conflict](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line) page.
1313
1414
### When should I resolve a conflict?
1515

@@ -46,7 +46,7 @@ gitGraph
4646

4747
1. Open the recently created pull request.
4848

49-
1. Scroll to the bottom of the page. Near the merge button, notice a message indicating there is a merge conflict.
49+
1. Scroll to the bottom of the page. Near the merge button, notice a message indicating there are conflicts to be resolved.
5050

5151
1. Press the **Resolve conflicts** button to open a special text editor for handling merge conflicts.
5252

.github/steps/3-step.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
## Step 3: Merge your pull request
22

3-
You can now [merge](https://docs.github.com/en/get-started/quickstart/github-glossary#merge) your pull request!
3+
Nice work! All that is left is to merge!
4+
5+
Yep, that's it! Merge conflicts can be easy! 🥰
46

57
### ⌨️ Activity: Merge your pull request
68

7-
1. First, resolve any remaining conflicts in your pull request.
8-
> Look back at step one if you need help.
9-
1. Click **Merge pull request**.
10-
1. Delete the branch `my-resume` (optional).
11-
1. Now that your pull request is merged, Mona should already be busy checking your work. Give her a moment and keep watch in the comments. You will see her respond with progress info and the next lesson.
9+
1. Click the **Merge pull request** button.
10+
11+
1. (optional) Delete the branch `my-resume`.
12+
13+
1. With the pull request merged, Mona will share a final review then update the readme to share your success. Nice work! 😎

.github/workflows/0-start-exercise.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
git config user.email github-actions[bot]@users.noreply.github.com
4242
echo "- Contributed to open source projects" >> resume.md
4343
git add resume.md
44-
git commit -m "Add open source contribution"
44+
git commit -m "Add open source experience"
4545
git push origin my-resume
4646
4747
git checkout main
4848
git pull --rebase origin main
49-
echo "- Built internal tools at Acme Corp" >> resume.md
49+
echo "- Built internal tools" >> resume.md
5050
git add resume.md
51-
git commit -m "Add Acme Corp experience"
51+
git commit -m "Add internal experience"
5252
git push origin main
5353
env:
5454
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Resolve merge conflicts
1+
# Resolve Merge Conflicts
22

33
_Learn why conflicts happen and how to resolve them._
44

55
## Welcome
66

7-
Merge conflicts happen when two people make changes to the same file on GitHub—a common occurrence when you’re working with others. While resolving differences might involve some discussion, merge conflicts don’t have to be scary. This course guides you through the steps to finding the best merge conflict solution, so your team can keep building.
7+
Merge conflicts happen when two people make changes to the same file on GitHub—a common occurrence when you’re working with others. While resolving differences might involve some discussion, merge conflicts don’t have to be scary.
88

9-
- **Who is this for**: New developers, new Git/GitHub users
9+
- **Who is this for**: New developers, new Git and GitHub users
1010
- **What you'll learn**: We'll introduce the tools for inspecting and resolving a merge conflict.
11-
- **What you'll build**: The reviewing of conflicting changes proposed to a simple Markdown.
11+
- **What you'll build**: You'll use a web editor to fix conflicting changes to Markdown file.
1212
- **Prerequisites**:
1313
- Skills Exercise: [Introduction to GitHub](https://github.com/skills-dev/introduction-to-github)
1414
- **How long**: less than 30 minutes

resume.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Developed and maintained various conference talks, online training, and in-perso
2020

2121
### Leadership
2222

23-
Managed multiple asynchronous teams in the development, maintenance, and release of various web applications and websites.
23+
Managed multiple asynchronous teams in the development, maintenance, and release of various web applications and websites.

0 commit comments

Comments
 (0)