문제

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?

도움이 되었습니까?

해결책

You could do with:

git grep 'the specified text' $(git rev-list --all)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top