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
To find only within a certain folder you can use:
ls -al | grep " \."
It is a very simple command to list and pipe to grep.