You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/steps/2-step.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,13 +38,13 @@ gitGraph
38
38
commit id: "Continue work"
39
39
40
40
checkout main
41
-
merge my-resume id: "Successful!"
41
+
merge my-resume id: "Success!"
42
42
43
43
```
44
44
45
45
### ⌨️ Activity: Resolve a merge conflict
46
46
47
-
1.Open the recently created pull request.
47
+
1.If needed, open the recently created pull request.
48
48
49
49
1. Scroll to the bottom of the page. Near the merge button, notice a message indicating there are conflicts to be resolved.
50
50
@@ -54,25 +54,25 @@ gitGraph
54
54
55
55
```txt
56
56
<<<<<<< my-resume
57
-
(... compare branch version ...)
57
+
- Contributed to open source projects
58
58
=======
59
-
(... base branch version ...)
59
+
- Built internal tools
60
60
>>>>>>> main
61
61
```
62
62
63
63
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`.
64
64
65
65
```txt
66
66
<<<<<<< my-resume
67
-
(... compare branch version ...)
67
+
- Contributed to open source projects
68
68
=======
69
69
>>>>>>> main
70
70
```
71
71
72
72
1. With our manual changes finished, let's remove the merge conflict markers. Only the content from the compare branch will remain.
73
73
74
74
```txt
75
-
(... compare branch version ...)
75
+
- Contributed to open source projects
76
76
```
77
77
78
78
1. In the top right, click the **Mark as resolved** button and choose **Commit merge**.
0 commit comments