I am searching through a Git repository and would like to include the .git folder.
.git
grep does not include this folder if I run
grep
In addition to Tyler's suggestion, Here is the command to grep all files and folders recursively including hidden files
find . -name "*.*" -exec grep -li 'search' {} \;