How to grep (search) committed code in the Git history?

625    Asked by NishiVerma in Devops , Asked on Jul 15, 2021

 I have deleted a file or some code in a file sometime in the past. Can I grep in the content (not in the commit messages)?

A very poor solution is to grep the log:

git log -p | grep

However, this doesn't return the commit hash straight away. I played around with git grep to no avail.

How to search git history?

Answered by Michael Vaughan

In order to search for commit content use the following command:

$ git grep $(git rev-list --all)

$ git rev-list --all | xargs git grep

This command will work if you run into an "Argument list too long" error.

But, if in order to limit the search to some sub-tree (for instance, "lib/util"), pass that to the rev-list sub-command and grep as well:

$ git grep $(git rev-list --all -- lib/util) -- lib/util

This command will grep through all your commit text for regexp. Note that the reason for passing the path in both commands is because rev-list will return the revisions list where all the changes to lib/util happened, but also you need to pass to grep so that it will only search in lib/util.

Let us understand this better with the help of a scenario: grep might find the same on other files which are contained in the same revision returned by rev-list (even if there was no change to that file on that revision).

Some other ways of searching your source are mentioned below:

A. Search working tree for text matching regular expression regexp:

$ git grep

B. Search working tree for lines of text matching regular expression regexp1 or regexp2:

$ git grep -e [--or] -e

C. Search working tree for lines of text matching regular expression regexp1 and regexp2, reporting file paths only:

$ git grep -e --and -e

D. Search working tree for files that have lines of text matching regular expression regexp1 and lines of text matching regular expression regexp2:

$ git grep -l --all-match -e -e

E. Search working tree for changed lines of text matching pattern:

$ git diff --unified=0 | grep

F. Search all revisions for text matching regular expression regexp:

$ git grep $(git rev-list --all)

G. Search all revisions between rev1 and rev2 for text matching regular expression regexp:

$ git grep $(git rev-list ..)



Your Answer

Interviews

Parent Categories