Skip to content

Commit 6be2717

Browse files
authored
Wording tweaks from trial run
1 parent 4125c3b commit 6be2717

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.github/steps/1-step.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ gitGraph
2828

2929
1. We start with a repository and add a `resume.md` file.
3030
2. We create a new branch called `my-resume` and update the skills area.
31-
3. At the same time, someone else updates the skills section on the `main` branch.
32-
4. We add more changes to the `my-resume` branch
31+
3. At the same time, someone else also updates the skills area on the `main` branch.
32+
4. We add other unrelated changes to the `my-resume` branch.
3333
5. When we try to merge `my-resume` into `main`, we get a **conflict!** Both branches modified the same part of `resume.md`.
3434

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

.github/steps/2-step.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ gitGraph
3838
commit id: "Continue work"
3939
4040
checkout main
41-
merge my-resume id: "Successful!"
41+
merge my-resume id: "Success!"
4242
4343
```
4444

4545
### ⌨️ Activity: Resolve a merge conflict
4646

47-
1. Open the recently created pull request.
47+
1. If needed, open the recently created pull request.
4848

4949
1. Scroll to the bottom of the page. Near the merge button, notice a message indicating there are conflicts to be resolved.
5050

@@ -54,25 +54,25 @@ gitGraph
5454

5555
```txt
5656
<<<<<<< my-resume
57-
(... compare branch version ...)
57+
- Contributed to open source projects
5858
=======
59-
(... base branch version ...)
59+
- Built internal tools
6060
>>>>>>> main
6161
```
6262

6363
1. After some inspection, we decide to keep the version from the compare branch. Remove the base branch version by deleting then content between `=======` and `>>>>>>> main`.
6464

6565
```txt
6666
<<<<<<< my-resume
67-
(... compare branch version ...)
67+
- Contributed to open source projects
6868
=======
6969
>>>>>>> main
7070
```
7171

7272
1. With our manual changes finished, let's remove the merge conflict markers. Only the content from the compare branch will remain.
7373

7474
```txt
75-
(... compare branch version ...)
75+
- Contributed to open source projects
7676
```
7777

7878
1. In the top right, click the **Mark as resolved** button and choose **Commit merge**.

.github/steps/3-step.md

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

3-
Nice work! All that is left is to merge!
4-
3+
Nice work! All that remains is to merge!
54
Yep, that's it! Merge conflicts can be easy! 🥰
65

76
### ⌨️ Activity: Merge your pull request

0 commit comments

Comments
 (0)