I keep getting the changes made to my development.log in my git repository. My .gitignore file has:
log/*.log
tmp/**/*
doc/api
doc/app
So I need two things to happen.
- Get the development.log file out of my current commit (its now too big for the server to receive)
- Make sure that it doesn't get back in there.
Any suggestions?