Move from agignore to gitignore
Per @andyw8 in #588:
https://github.com/ggreer/the_silver_searcher/wiki/Advanced-Usage
`agignore` is now deprecated as the place to declare ignored files for
search. We'll put these files into `gitignore` rather than `ignore` so
that we have consistently ignored files between ag, git, etc.
Recommended by @croaky:
bcfa239b31
Close #588
This commit is contained in:
parent
80972c9b6e
commit
013f9711af
2 changed files with 9 additions and 11 deletions
7
agignore
7
agignore
|
@ -1,7 +0,0 @@
|
||||||
.git/
|
|
||||||
tags
|
|
||||||
/bower_components/
|
|
||||||
/log
|
|
||||||
/node_modules/
|
|
||||||
/tmp
|
|
||||||
/vendor
|
|
13
gitignore
13
gitignore
|
@ -1,13 +1,18 @@
|
||||||
.DS_Store
|
!tags/
|
||||||
|
*.pyc
|
||||||
*.sw[nop]
|
*.sw[nop]
|
||||||
|
.DS_Store
|
||||||
.bundle
|
.bundle
|
||||||
.byebug_history
|
.byebug_history
|
||||||
.env
|
.env
|
||||||
|
.git/
|
||||||
|
/bower_components/
|
||||||
|
/log
|
||||||
|
/node_modules/
|
||||||
|
/tmp
|
||||||
|
/vendor
|
||||||
db/*.sqlite3
|
db/*.sqlite3
|
||||||
log/*.log
|
log/*.log
|
||||||
rerun.txt
|
rerun.txt
|
||||||
tags
|
tags
|
||||||
!tags/
|
|
||||||
tmp/**/*
|
tmp/**/*
|
||||||
!tmp/cache/.keep
|
|
||||||
*.pyc
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue