Welcome to another episode of TWIL, the bite-size weekly learning series curated by our team! This week, Emily brings insights on streamlining your workflow with two savvy techniques. Discover how to effortlessly perform a Remote Branch Rebase using Git, merging updates in a single command instead of the multi-step process you might be used to. In the realm of presentations, explore the convenience of DeckSet as Emily presents the merits of Markdown-Powered Slides for crafting compelling visuals with minimal effort. Get ready to elevate your expertise with these savvy tools for developers and presenters alike!
Easier Remote Branch Rebase
Previously, my usual workflow to update a local branch to a remote parent branch was:
git fetch upstream
git rebase upstream/master
This can be done in a single command (assuming you are on master
):
git pull upstream master --rebase
- Git
Markdown-Powered Slides (DeckSet)
DeckSet is a really neat presentation tool that allows you to rapidly create slides that are powered by a simple markdown file. It has added syntax to do things like separate content per-slide, format text and images, add a footer to all pages, etc.
- Tools
- Presentations