summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-07-22 10:42:32 -0400
committerAndrew Gallant <jamslam@gmail.com>2018-07-22 10:42:32 -0400
commit560dffd2476f16b4b296aae6aca7aec0f0c6ba1c (patch)
treed3dbe91e9179b43b9b0435798b6526c8531152dc /CHANGELOG.md
parente65ca21a6cebceb9ba79fcd164da24478cc01fb0 (diff)
ripgrep: add --no-ignore-global flag
This commit adds a new --no-ignore-global flag that permits disabling the use of global gitignore filtering. Global gitignores are generally found in `$HOME/.config/git/ignore`, but its location can be configured via git's `core.excludesFile` option. Closes #934
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d7afff46..987547aa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -47,9 +47,12 @@ Feature enhancements:
* [FEATURE #924](https://github.com/BurntSushi/ripgrep/issues/924):
`termcolor` has moved to its own repository:
https://github.com/BurntSushi/termcolor
+* [FEATURE #934](https://github.com/BurntSushi/ripgrep/issues/934):
+ Add a new flag, `--no-ignore-global`, that permits disabling global
+ gitignores.
* [FEATURE #967](https://github.com/BurntSushi/ripgrep/issues/967):
- Rename `--maxdepth` to `--max-depth` for consistency. We retain `--maxdepth`
- as a synonym for backwards compatibility.
+ Rename `--maxdepth` to `--max-depth` for consistency. Keep `--maxdepth` for
+ backwards compatibility.
* [FEATURE #978](https://github.com/BurntSushi/ripgrep/issues/978):
Add a `--pre` option to filter inputs with an arbitrary program.
* [FEATURE fca9709d](https://github.com/BurntSushi/ripgrep/commit/fca9709d):
@@ -84,8 +87,8 @@ Bug fixes:
* [BUG #934](https://github.com/BurntSushi/ripgrep/issues/934):
Don't respect gitignore files when searching outside git repositories.
* [BUG #948](https://github.com/BurntSushi/ripgrep/issues/948):
- ripgrep now uses an exit code of 2 to indicate an error, and uses an exit
- code of 1 to indicate that no matches were found.
+ Use exit code 2 to indicate error, and use exit code 1 to indicate no
+ matches.
* [BUG #951](https://github.com/BurntSushi/ripgrep/issues/951):
Add stdin example to ripgrep usage documentation.
* [BUG #955](https://github.com/BurntSushi/ripgrep/issues/955):