Is there any way to search inside of a .git repository? Maybe with a help of third party tools that can convert git repo into a virtual file system?
Ideally, it would be great to search inside different branches and throughout the whole history. Say, when my constant MAX_AGE was introduced? I know it is possible to use git grep
and git log
commands (see https://git-scm.com/book/en/v2/Git-Tools-Searching#Git-Log-Searching), but I would like to add powerful capabilities like FileLocatorPro's Boolean RegEx etc.
Thank you.