Commit graph

9 commits

Author SHA1 Message Date
Geoff Harcourt
013f9711af 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
2018-12-16 14:06:13 -05:00
Tute Costa
9793e833cf Git ignore .byebug_history
After using byebug on any Ruby file, the sessions history is written to
this file. It shouldn't be part of our repositories, so we ignore it.

See also: https://github.com/thoughtbot/suspenders/pull/710
2016-04-15 12:51:12 -04:00
George Brocklehurst
2ebe894793
Globally ignore compiled Python files.
The first time a `.py` file is run, or any time it's been modified, Python
creates a `.pyc` file containing a bytecode representation.

These bytecode files should always be ignored by Git, since keeping them
updated in a repo would be time consuming and would serve no purpose.
2016-01-11 08:09:48 -05:00
Daniel Nolan
18a4c817bb Stop ag from excluding directories with ds_store
* Silver searcher or ag was filtering out any directory that had a
  .DS_STORE file. Any directory that has a .DS_STORE file in it is being
  ignored by ag and therefor does not show up in the ctrlp fuzzy finder
  either.
* Removing the * from before .DS_STORE in the gitignore
  file still prevents .DS_STORE files from being checked into source
  control and stops ag from filtering out the directory. I am not sure
  if this is a bug with silver_searcher or what
2015-02-09 10:01:00 -08:00
Eric Collins
a99fbb0f57 Ignore tags file, but not directories named tags 2014-10-24 15:38:05 -04:00
Jessie A. Young
b9d24c014a Remove Zeus and Cucumber references
* Spring is now built in to Rails:
  http://weblog.rubyonrails.org/2014/4/8/Rails-4-1/
* Haven't used Cucumber on a project in over a year
2014-06-06 16:01:37 -04:00
Joël Quenneville
82acdf7fa4 Globally ignore .env file
It is a common practice to store environment variables in a .env file in
development. This file is read by tools such as foreman and dotenv. This
file can contain sensitive information such as secret keys and should
always be excluded from version control
2013-09-20 11:12:21 -04:00
Greg Lazarev
f1c03da33a Remove old ignores
* sass gets compiled to `tmp/sass-cache` with Rails
* vendor/bundle_gems seems like an arbitrary vendor directory
* vim/.netrwhist is for a plugin we no longer use
2013-07-22 18:43:57 -07:00
Dan Croak
0060e0ab25 Add .gitignore 2012-10-21 14:54:19 -07:00