I am developing a PhP application and using git to deploy it on heroku I am new to git
the project is almost about to terminate now my log folder shouldn't affect the server anymore I mean from now the log files should only saves the server status not my local branch, The structure is like this:
MyProject
|
-logfolder/*
I put logfolder/* in the gitignore file but still the changes in my own logfolder are pushing alongside with other changes to server,..
what shall I do about it?
thanks in advance