How I Nitpick

If you read my previous series on How I Git it, you know I like my git commits all nice and clean. I do this for you, my dear code reviewer. I remove the noise so that you can focus on the change. What is the purpose with code review, if you cannot see through the noise?
Read more →

How I Git It - Work Complete

This is part 5 of my serie on How I Git it. You can read Part 4 here. Work complete, next please It might be clear already, but just to state it, I always work on my own private branch. I expect no one to depend on it being in a certain way, because I will force push all sorts of changes to it. A commit that was there yesterday might very well be gone today.
Read more →

How I Git It - Syncing

Pulling in new commits from another branch and solving merge conflicts like they never happened!
Read more →

How I Git It - More Rebase

Rebase rebase rebase…
Read more →

How I Git It - Basic Rebase

Rebase is such a great tool to get my commits just right. Basically, it’s this process that let’s me rewind back to a commit of my choosing, and then replay all the commits, one at a time, allowing me to:
Read more →