Fix gitignore so ripgrep works

ripgrep was failing to search in the bindgen repo:
```
./.gitignore: line 19: error parsing glob '**.orig': invalid use of **; must be one path component
```

Per the gitignore docs it seems like ripgrep is correct and this line is
invalid: https://git-scm.com/docs/gitignore#_pattern_format
This commit is contained in:
Ted Mielczarek 2019-01-25 10:56:36 -05:00
parent 8747bc9c28
commit 22194a000a

2
.gitignore vendored
View File

@ -16,4 +16,4 @@ __bindgen.*
csmith-fuzzing/platform.info
# Backups of test cases from C-Reduce
**.orig
**/*.orig