1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 08:08:02 +00:00

Add Include Ignore Files In Ripgrep Search as a Unix TIL

This commit is contained in:
jbranchaud
2024-03-14 16:45:22 -05:00
parent 7208fad280
commit 74a3dd3c3a
2 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
# Include Ignore Files In Ripgrep Search
By default, [ripgrep (`rg`)](https://github.com/BurntSushi/ripgrep) will look
for and respect _ignore_ files like `.gitignore`. Any file and directory marked
by those ignore files will no be included in an `rg` search.
This is usually what you want. Sometimes, however, it can be useful to get
results from this ignored files as well.
In order to ignore your ignore files, pass the `--no-ignore` flag to `rg`:
```bash
$ rg --no-ignore ENV_VAR_KEY
```
Something to keep in mind is that `rg` also ignores _hidden_ files and
directories (those things that are prefixed with a `.`, such as `.env` or
`.config/`). If some of your ignored files are also _hidden_ files, then they
still won't show up in search. You'll need the `--hidden` flag as well.
```bash
$ rg --no-ignore --hidden ENV_VAR_KEY
```
A shorthand equivalent for that is `-uu`:
```bash
$ rg -uu ENV_VAR_KEY
```
See `man rg` for more details.