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
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
Once you add the paths to .gitignore and untrack the files with git rm -r --cached .
Ensure you add the .gitignore and commit.