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

adds rebase backup slide

parent 5993e5bc
Branches
No related tags found
No related merge requests found
...@@ -821,6 +821,39 @@ ...@@ -821,6 +821,39 @@
<section id="eof" data-background="img/trex.png"> <section id="eof" data-background="img/trex.png">
<h1>EOF</h1> <h1>EOF</h1>
</section> </section>
<section>
<section id="backup" data-markdown>
# backup slides
</section>
<section id="collab-conflicts-rebase" data-markdown>
## rebasing
### maintainer
```bash
git remote add alice https://...
git fetch alice
git rebase master alice/topic/feature
# fix conflicts
git push
# close merge request
```
### contributor
```bash
git fetch upstream
git rebase origin/master topic/feature
# fix conflicts
# force push because branch history changed
git push --force
```
notes:
- manually close merge request because no merge commit
</section>
</section>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment