Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 <pattern>

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

share|improve this question

6 Answers

up vote 341 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.

share|improve this answer
14  
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
4  
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
2  
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
12  
-bash: /usr/bin/git: Argument list too long – todd Nov 29 '11 at 18:42
14  
Use xargs to eliminate the argument list being too long. git rev-list --all | xargs git grep expression – dlowe Oct 11 '12 at 18:02
show 8 more comments

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.

share|improve this answer
1  
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
6  
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
This answer solved my problem too (when did a function parameter appear and disappear from the code). – Dženan Jul 23 '12 at 13:36

My favorite way to do it is with git log's -G option (added in version 1.7.4).

-G<regex>
       Look for differences whose added or removed line matches the given <regex>.

There is a subtle difference between the way the -G and -S options determine if a commit matches:

  • The -S option essentially counts the number of times your search matches in a file before and after a commit. The commit is shown in the log if the before and after counts are different.
  • With the -G option, the commit is shown in the log if your search matches any line that was added, removed, or changed.

For example, -S will not show commits where a line matching your search was moved. The following also does not match with -S:

Before:

hello hello

After:

hello goodbye hello
share|improve this answer

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

share|improve this answer

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 > out.txt

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.

share|improve this answer
2  
+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 '12 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 '12 at 14:08

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.

share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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