Question

I need to list all the files that currently or at some point in history contained a specified text.Is there anyway to do that?

Était-ce utile?

La solution

You could do with:

git grep 'the specified text' $(git rev-list --all)
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top