JimLakis / PDM_Wildlife

0 stars 0 forks source link

git ignore the database #4

Open bbelderbos opened 1 year ago

bbelderbos commented 1 year ago

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:

  1. add a pattern to your .gitignore file, e.g. *.db
  2. 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 ...
bbelderbos commented 1 year ago

@JimLakis I still see the database in this repo, did you try the above?