For some reason my Sqlite3 database isn't being ignored.
After committing all code changes from my local machine to GH, I git pulled them into my production machine only to find the merge conflict error AGAIN with sqlite3.
I ran
git stash
git pull
git stash apply --index
only to get
warning: Cannot merge binary files: db.sqlite3 (Updated upstream vs. Stashed changes)
Auto-merging settings/base.py
Auto-merging db.sqlite3
CONFLICT (content): Merge conflict in db.sqlite3
When I go to my domain name, it looks as though the master branch changed (re styling etc) hasn't even been pulled, only the new sqlite database entries (such as my text profiles etc)!
I'm really confused at how to properly do this, I've followed a load of tutorials and still can't get this fixed.
My .gitignore
*.pyc
*.sqlite3
db.sqlite3
/settings/local
Can someone please help me? Yes I've also ran git rm --cached db.sqlite3
on both local and production machine.