What should I put in a meteor .gitignore file?

Michael Forrest picture Michael Forrest · May 24, 2012 · Viewed 22.8k times · Source

I have a new meteor project. I'm guessing the .meteor dir has a combination of configuration files (needed) and temporary files (not needed).

So what's in your .gitignore?

Answer

debergalis picture debergalis · May 24, 2012

The only directory you want excluded from version control is .meteor/local.

Meteor automatically creates the right .meteor and .meteor/.gitignore, though -- you shouldn't need to do anything.