-- Leo's gemini proxy

-- Connecting to g.codelearn.me:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini

git grep --untracked


Turned out I use `git grep` a lot with my VIM (using

EasyGrep

plugin). At some point this plugin just stopped to show me all the available results.


Due to lack of explicit `git grep` usage it was pretty mysterious.


The reason is that `git grep` doesn't search in untracked files. If you want to search in untracked files too just add `--untracked` option to the command like this:


git grep --untracked SomethingILookingFor *

Official git grep doc

-- Response ended

-- Page fetched on Sat May 11 07:33:11 2024