I want to remove any tracking of my .csv files in my repository, so I added the line .csv to my .gitignore file.
However, I would also like to remove all the tracking of all my already tracked csv files. I wanted to use git filter-repo, running 'git filter-repo --path *.csv --invert-path', however this does not seem to work out, and i can't find any way to remove more than 1 file from the history after reading: https://htmlpreview.github.io/?https://github.com/newren/git-filter-repo/blob/docs/html/git-filter-repo.html#EXAMPLES.
Thanks for your help !