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.

link|improve this question

feedback

5 Answers

up vote 153 down vote accepted

To search for commit content (i.e., actual lines of source, as opposed to commit messages and the like), what you need to do is:

git grep <regexp> $(git rev-list --all)

This will grep through all your commit text for regexp.

Here are some other useful ways of searching your source:

Search working tree for text matching regular expression regexp:

git grep <regexp>

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

git grep -e <regexp1> [--or] -e <regexp2>

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

git grep -e <regexp1> --and -e <regexp2>

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 <regexp1> -e <regexp2>

Search all revisions for text matching regular expression regexp:

git grep <regexp> $(git rev-list --all)

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

git grep <regexp> $(git rev-list <rev1>..<rev2>)

If you run OS X, I have written an OS X Dashboard Widget summarizing this (and other Git commands) here.

link|improve this answer
8  
Thanks, works great! It's sad though that "$(git rev-list --all)" is needed and no convenient switch to specify searching in the whole history of a branch. – Ortwin Gentz May 28 '10 at 21:24
Excellent. +1. The GitBook add some details (book.git-scm.com/4_finding_with_git_grep.html), and Junio C Hamano illustrates some of your points: gitster.livejournal.com/27674.html – VonC May 28 '10 at 21:26
2  
Unfortunately, I cannot get this going with msysgit-1.7.4. It tells me sh.exe": /bin/git: Bad file number. VonC's answer also works with msysgit. – eckes Jul 15 '11 at 8:46
1  
If you get an "unable to read tree" error when you invoke git grep history with rev-list, you might need to clean things up. Try git gc or check out: stackoverflow.com/questions/1507463/… – Anthony Panozzo Oct 28 '11 at 20:14
4  
-bash: /usr/bin/git: Argument list too long – todd Nov 29 '11 at 18:42
show 1 more comment
feedback

You should use the pickaxe (-S) option of git log

git log -SFoo -- path_containing_change 
git log -SFoo -- path_containing_change --since=2009.1.1 --until=2010.1.1

See Git history - find lost line by keyword for more.


As Jakub Narębski comments:

  • this looks for differences that introduce or remove an instance of <string>.
    It usually means "revisions where you added or removed line with 'Foo'".

  • the --pickaxe-regex option allows you to use extended POSIX regex instead of searching for a string.

link|improve this answer
Caveat: this would find those revisions in which number of occurences of 'Foo' changed, which usually means revisions where you added or removed line with 'Foo'. – Jakub Narębski May 28 '10 at 14:26
3  
There is also --pickaxe-regex if you want to use extended POSIX regex instead of searching for a string. – Jakub Narębski May 28 '10 at 14:28
Thanks, I wasn't aware of this option. Looks like this is the best solution if you're interested in the commit messages and Jeet's solution is most appropriate if you need the traditional UNIX grep behavior of pure line matching. – Ortwin Gentz May 28 '10 at 21:20
@Ortwin: agreed (and I have upvoted the chosen solution). the git log bit in your question had me confused ;) – VonC May 28 '10 at 21:29
feedback

These blog posts by Junio C Hamano (git maintainer) might be interesting for you:

link|improve this answer
feedback

I took @Jeet's answer and adpated it to Windows (thanks to this answer):

FOR /F %x IN ('"git rev-list --all"') DO @git grep <regex> %x

Note that for me, for some reason, the actual commit that deleted this regex did not appear in the output of the command, but rather one commit prior to it.

link|improve this answer
+1 -- and if you want to avoid hitting "q" after each find, add --no-pager to the git command at the end – altCognito Mar 28 at 14:04
Also, I would note that appending to a text file has the added advantage of actually displaying the matching text. (append to a text file using >>results.txt for those not versed in Windows piping... – altCognito Mar 28 at 14:08
feedback

So are you trying to grep through older versions of the code looking to see where something last exists?

If I were doing this, I would probably use git bisect. Using bisect, you can specify a known good version, a known bad version, and a simple script that does a check to see if the version is good or bad (in this case a grep to see if the code you are looking for is present). Running this will find when the code was removed.

link|improve this answer
Thanks, I know git bisect but in my case it's not about any good or bad versions but just about old code I still need. – Ortwin Gentz May 28 '10 at 21:17
2  
Yes, but your "test" can be a script that greps for the code and returns "true" if the code exists and "false" if it does not. – Rob Di Marco Jun 1 '10 at 12:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.