Skip to content
Snippets Groups Projects
Verified Commit 5993e5bc authored by ck85nori's avatar ck85nori :railway_track:
Browse files

adds conflicts section

parent 80dadee8
No related branches found
No related tags found
No related merge requests found
...@@ -754,13 +754,32 @@ ...@@ -754,13 +754,32 @@
</section> </section>
<section id="collab-conflicts" data-markdown> <section id="collab-conflicts" data-markdown>
## conflicts ## resolving conflicts
### maintainer
```bash
git remote add alice https://...
git fetch alice
git checkout master
git merge alice/topic/feature
# fix conflicts
git push
```
### contributor
```bash
git fetch upstream
git checkout topic/feature
git merge origin/master
# fix conflicts
git push
```
notes: notes:
- hopefully conflicting changes - hopefully conflicting changes
- MR status should show that (can not be merged without conflicts) - MR status should show that (can not be merged without conflicts)
- TODO explain merge or rebase - maintainer decides if trivial or delegate to contributor
- TODO show both variants from maintainer and contributor
</section> </section>
</section> </section>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment