Supercharge Your Git History Navigation with Fuzzy Find

Ever found yourself scrolling endlessly through git log trying to find that one specific commit? Let’s explore how to transform this tedious process into a smooth, interactive experience using fzf, a powerful command-line fuzzy finder. This approach will not only make navigating Git history more efficient but also more enjoyable. Basic Setup: Your First Fuzzy Git log The simplest way to start is by piping your git log into fzf:...

November 11, 2024 · Max Scheijen

Git Bisect to Find Bugs

Say you and your team are working on a project. Somewhere in the last 300 commits a bug was introduced. You searched through the commit and their messages. But you can’t find which commit introduced the bug. Damm what are we going to do… This when you can use git bisect, and there are only two things you need the commits are ordered by time you need to know a commit where the issues was not present....

September 4, 2024 · Max Scheijen