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?
An ignorefile won’t ignore files that are in the repo, so once development.log is removed everything should work as you expected.