Day 4: Add a .gitignore and Untrack Committed Artifacts - MLOPS

I have removed the files using command

git rm -r --cached src/fraud_detection/pycache models/fraud_model.pkl venv .ipynb_checkpoints .env

Results says still files are there on the git

Please compare your solution to the one described here; it may answer your question.

Once you add the paths to .gitignore and untrack the files with git rm -r --cached .

Ensure you add the .gitignore and commit.