[note: If this questions should be asked elsewhere, please say so. I'm not sure whether it's web2py-centric enough, but it is a problem I'm facing with a web2py installation.]
I have an app with data stored in sqlite that is hosted on fluxflex. The database contents change frequently based on user interactions. My problem, then, is that when I do a git push (to update other files for the app) this reverts the sqlite file to the old version on my local dev machine. How can I get git to push changes to other files but ignore differences in the /databases folder? I've tried putting the databases folder in a .gitignore file in the root folder of my local git repo, but the database was still reverted to the last committed version. Thanks, Ian

