Git interactive rebase

Git is a powerful source control system that, among other options, allows us to redefine the history which can be very handy. Sometimes hour commit history can be messy and this capability allows us to rewrite the story as we’d like to read it instead of how it happened.

This learning hour is meant to understand what are some possibilities and put them in practice.

Learning goals

Session outline

Useful Git commands

Ask people to share one Git command or alias they find especially useful. Doesn’t need to be a command line action, it can be done from any Git client.

How does Git use commits

Git is a source control system that works with commits. We can consider a commit as if it were a diff file and a pointer to the parent commit. With this definition, when we checkout a commit (usually the latest in a branch), what we see is the result of applying a bunch of diffs in the order defined by the parenting relationship.

Luckily for us, Git provides us with the capability of changing the order of the commits, the contents, the messages and other things.

Be careful though, this practice can mess up if you rewrite history that has already been shared with other people (remote branches)

Interactive rebase:

Refactor the commits of a branch:

Ask attendants to checkout the repo “Git Interactive Rebase LH Exercise” and try to apply all these improvements:

  1. There’s a commit message which seems really verbose and opinionated, change the message so the content is more clear and objective.
  2. There’s a commit which deletes all the tennis Katas in Emily’s repo except for the Javascript-Jest one. This commit is one of the last ones, but it would make more sense before the whole refactoring, move that commit to the beginning.
  3. There’s a commit that’s fixing an error introduced in another one. Remove both commits as there’s no point in keeping them.
  4. There are some commits which are very small and fine grained. All of a sudden you feel the urge merge them together in one single commit with a higher level of abstraction. Compact some small commits into a bigger one
  5. A change related to evenResult function slipped into the commit “Refactor late game result to use array”. Split the commit in two and move the evenResult change into the previous commit “Rewrite even result to loookup”

Facilitators notes:

  1. Let people use whatever Git client they prefer, they can even mix them up if they want to.
  2. The fifth exercise is more complex than the previous four ones, maybe not everyone will have to make it. If only some persons can do it, you can let them facilitate or explain how did they do it to the rest of the group.

Explain how interactive rebase works

Sit with someone from another couple/group, and write in a post-it a summary of how does Git interactive rebase work.

Acknowledgements

LH created while working as Tech Coach for SunwebGroup on top of the Kata created while working for Volcànic.