Hasty Treat - Git Rebase Explained

Published: April 26, 2021, 1 p.m.

b'

In this Hasty Treat, Scott and Wes talk about Git Rebase \\u2014 what it is and how and when to use it!

Sanity - Sponsor

Sanity.io\\xa0is a real-time headless CMS with a fully customizable Content Studio built in React. Get a Sanity powered site up and running in minutes at\\xa0sanity.io/create. Get an awesome supercharged free developer plan on\\xa0sanity.io/syntax.

Sentry - Sponsor

If you want to know what\\u2019s happening with your code, track errors and monitor performance with Sentry. Sentry\\u2019s Application Monitoring platform helps developers see performance issues, fix errors faster, and optimize their code health. Cut your time on error resolution from hours to minutes. It works with any language and integrates with dozens of other services. Syntax listeners new to Sentry can get two months for free by visiting\\xa0Sentry.io\\xa0and using the coupon code TASTYTREAT during sign up.

Show Notes

05:12 - Why and when to rebase?

  • git rebase -i\\xa0is interactive
  • Rebase allows you to rewind your current branch, apply the changes of another branch to it, and then on top of that, apply your new commits.
  • Common uses:
    • Squash all commits into one or multiple commits
    • Reword commits
  • These lines can be re-ordered \\u2014 they are executed from top to bottom.
    • p, pick = use commit
    • r, reword = use commit, but edit the commit message
    • e, edit = use commit, but stop for amending
    • s, squash = use commit, but meld into previous commit
    • f, fixup = like \\u201csquash\\u201d, but discard this commit\\u2019s log message
    • x, exec = run command (the rest of the line) using shell
    • b, break = stop here (continue rebase later with \\u2018git rebase --continue\\u2019)
    • d, drop = remove commit
    • l, label
    • t, reset
    • m, merge [-C | -c ]

Links

Tweet us your tasty treats!

'