From 013f9711affdebc592b9010e916681858922aab8 Mon Sep 17 00:00:00 2001 From: Geoff Harcourt Date: Wed, 6 Jun 2018 21:58:12 -0400 Subject: [PATCH] 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: https://github.com/statusok/statusok/commit/bcfa239b31d10897785df4258b96af98175f6a9f Close #588 --- agignore | 7 ------- gitignore | 13 +++++++++---- 2 files changed, 9 insertions(+), 11 deletions(-) delete mode 100644 agignore diff --git a/agignore b/agignore deleted file mode 100644 index 941ddb2..0000000 --- a/agignore +++ /dev/null @@ -1,7 +0,0 @@ -.git/ -tags -/bower_components/ -/log -/node_modules/ -/tmp -/vendor diff --git a/gitignore b/gitignore index d3cceb5..4f40b9b 100644 --- a/gitignore +++ b/gitignore @@ -1,13 +1,18 @@ -.DS_Store +!tags/ +*.pyc *.sw[nop] +.DS_Store .bundle .byebug_history .env +.git/ +/bower_components/ +/log +/node_modules/ +/tmp +/vendor db/*.sqlite3 log/*.log rerun.txt tags -!tags/ tmp/**/* -!tmp/cache/.keep -*.pyc