How to use Git rebase in real life

1 · · Nov. 8, 2022, midnight
Summary
My colleague Chris recently wrote about how to take advantage of Git rebase. In this post we'll explain how you can take these techniques, and apply them to daily developer life. Fixup Imagine you have created a merge request, and there are some pipeline failures and some comments from reviews, and suddenly your commit history looks something like this: $ git log --oneline 8f8ef5af (HEAD -> my-change) More CI fixes e4fb7935 Apply suggestion from reviewer c1a1bec6 Apply suggestion from reviewer ...