I see [animals_db.db](https://github.com/JimLakis/PDM_Wildlife/blob/main/animals_db.db) made it to version control. You typically would ignore the database.
To fix it you can do this:
add a pattern to your .gitignore file, e.g. *.db
remove the existing db from version control while keeping the file: git rm --cached animals_db.db, then make a commit and push it to GitHub. Let me know if that works ...
I see
[animals_db.db](https://github.com/JimLakis/PDM_Wildlife/blob/main/animals_db.db)
made it to version control. You typically would ignore the database.To fix it you can do this:
*.db
git rm --cached animals_db.db
, then make a commit and push it to GitHub. Let me know if that works ...