File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ commits which altered the same lines.
173
173
## Resolving Conflicts
174
174
175
175
We're going to resolve the conflict by merging
176
- in our ` main ` branch into our feature branch
176
+ in the ` main ` branch into our feature branch
177
177
` 7_add-citation-fitzroy ` :
178
178
179
179
``` mermaid
@@ -189,7 +189,18 @@ gitGraph
189
189
merge main
190
190
```
191
191
192
- Switch to the feature branch:
192
+ First we need to make sure our fork's ` main ` branch
193
+ is in sync with the upstream repository.
194
+ Navigate to your fork on GitHub and click on the ** Sync fork** button.
195
+
196
+ In your local copy of your fork, update the ` main ` branch:
197
+
198
+ ``` bash
199
+ $ git switch main
200
+ $ git pull
201
+ ```
202
+
203
+ Switch back to the feature branch:
193
204
194
205
``` bash
195
206
$ git switch 7_add-citation-fitzroy
You can’t perform that action at this time.
0 commit comments