DEV Community

Nesha Zoric
Nesha Zoric

Posted on

Debugging with Git

When you are working on a huge project, you may discover bugs in the code that prevent you from proceeding any further in your development. How to fix them?

You can start by looking through your commit history by hand, but this would end up as a very tedious process. Thankfully, Git has multiple tools that can help you hunt for a bug or the culprit when things go wrong.

Git Blame

$ git blame <file_path/file_name>
The git blame command helps you find the commit that created the specific line of code that causes a bug in a specific file of a project. It also determines the author of the commit, making is easier to ask for more information about the code.

You can -L option to limit the line output range.

$ git blame -L 11,21 new_file
^95d69a196b5c7 (Jhon Smith  2018-05-18 13:04:22 +0200 11) def new
^95d69a196b5c7 (Jhon Smith  2018-05-18 13:04:22 +0200 12) @article = Article.new
^95d69a196b5c7 (Jhon Smith  2018-05-18 13:04:22 +0200 13) end
3171aa2dbbce7 (David Smith 2018-05-16 18:21:30 +0200 14) def edit
3171aa2dbbce7 (David Smith 2018-05-16 18:21:30 +0200 15) @article = Article.find(params[:id])
3171aa2dbbce7 (David Smith 2018-05-16 18:21:30 +0200 16) end
^95d69a196b5c7 (Jhon Smith  2018-05-18 13:04:22 +0200 17) def create
3171aa2dbbce7 (David Smith 2018-05-16 18:21:30 +0200 18) @article = Article.new(article_params)
^95d69a196b5c7 (Jhon Smith  2018-05-18 13:04:22 +0200 19) if @article.save
^95d69a196b5c7 (Jhon Smith  2018-05-18 13:04:22 +0200 20) redirect_to @article
^95d69a196b5c7 (Jhon Smith  2018-05-18 13:04:22 +0200 21) else

By following the partial SHA-1 of a commit you can easily see who, when and how was a specific line of code modified. Note that the ^ prefix shows lines that were created in the initial commit and have remained unchanged ever since.

Use -C option to figure out where snippets of code originally came from if they were copied from elsewhere. It tells you the original author and commits regardless of the refactoring done afterward.

$ git blame -L -C 11,21 <file_path/file_name>

git blame is helpful when you can assume the cause of the problem. What if you had no idea how to get back to a working state? This is where git bisect comes into play.

Git Bisect

A git bisect is a debugging tool used to find out which specific commit introduced a bug or a problem in the project by doing an automatic binary search. You don't know what file in the project contains the bug.

If you don't know what is breaking, and there have been a bunch of commits since the last state where you know the code worked, you’ll likely turn to git bisect for help.

git-bisect

What git bisect does is, it divides the git commit tree into "good", bug-free commits and "bad" commits by testing them with binary search. Based on the result of the tests, Git navigates through recent commits identifying them, until it finds the culprit. This is known as the binary search algorithm.

If you have multiple bugs, you need to perform a binary search for each of the bugs.

How Does This Work?

  1. First, let's start with the binary search mode to find a bug: $ git bisect start.
  2. Next, you need to look for a commit where everything was still working. To do so, let's examine the commit history to find what you need: $ git log --oneline.

--oneline option shows only the names of git commits.

$ git log --oneline
f11c599 Removed unnecessary lines
95d69a1 Added article tests
3171aa2 Enabled editing articles
95d69a1 Added articles
  1. Tag the oldest "good" commit SHA-1: $ git bisect good 95d69a1.
  2. After you have assigned the "good" tag, you need to find a "bad" commit to divide the commit tree where Git can apply the binary search algorithm. Since you know that the latest commit has the error, you will assign it as the "bad" commit: $ git bisect bad f11c599.
  3. Once you have assigned initial and final pointers for your search, Git walks you through the commit history and tags "good" and "bad" commits.
  4. This process continues until you successfully find out the first "bad" commit, the cause of your problem. Now you can exit the git binary search mode by executing: $ git bisect reset.

Git Grep

$ git grep <keyword>
The git grep command allows you to efficiently and quickly search through your project for a string or regular expression in any of the files in your source code. ==It avoids searching through .gitignore files.==

GREP stands for Global Regular Expression Print.

Additional options:

  • -n or --line-number: Prints out the line numbers where Git has found matches.
  • -i or --ignore-case: Ignores case differences between the searched keyword and the file.
  • -c or --count: Shows the number of matches found in the file for the inputted keyword.
  • -p or --show-function: Displays the context of the searched keyword.
  • --and: Ensures multiple matches in the same line of text.

Summary

git blame is a great tool if you know where the buggy code is located. On the other hand, if your repository is considerably large, with a huge commit history that makes it difficult to find the error, git bisect is the way to go. Or you could easily search through your project for a string or regular expression with git grep.


Three debugging tools provide you with three different ways to fix your problems. If you need a hand with fixing problems, why not reach out to Kolosek? My team would be happy to help!

This article is originally published at Kolosek Blog.

Top comments (10)

Collapse
 
belinde profile image
Franco Traversaro

I don't understand: how does git bisect check if a commit is good or bad? Does have an integration with unit tests?

Collapse
 
maestromac profile image
Mac Siri

There's no integration. It would be up to you to evaluate if a commit is good or bad by either running a test, starting the app locally, or playing with it on repl/console. Git bisect reduces the number of commits you would have to go through with binary search.

Collapse
 
hoelzro profile image
Rob Hoelz

You can also use git bisect run to have Git run your tests - that way if your test suite takes a while, you can leave and make yourself a sandwich or something. When you get back, Git will have done all the work for you!

Thread Thread
 
maestromac profile image
Mac Siri

Well this change everything. Thanks!

Collapse
 
tadaboody profile image
Tomer

Could you please show a debugging session where this helps find the bug? As is I don't think I get the workflow with these tools

Collapse
 
martinhaeusler profile image
Martin Häusler

I sometimes wish that there was a way to do this bisection search faster. It's really a painful process, yet sometimes it cannot be avoided.

Collapse
 
hoelzro profile image
Rob Hoelz

I haven't used it in a while, but I wrote a tool called git-pisect that leverages multiple cores to converge on the offending commit: hoelz.ro/blog/git-pisect

Let me know if it works for you!

Collapse
 
martinhaeusler profile image
Martin Häusler

I'll keep that in mind, thanks!

Collapse
 
michalkleiner profile image
Michal Kleiner

There are two similar commit hashes in the bisect example - 95d69a1, so it's not clear which one will get tagged as good.

Collapse
 
jibinp profile image
Jibin Philipose

Awesome.