So I've successfully deleted a directory and its history from git.
With something like:
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch folder-to-delete" HEAD
However, my git commit log still contains the commits for that directory. When I look at my repository history I see all the commits for those directories. They have no files in them (as expected), but the commits are still in the history.
Is it possible to delete these commits from the history as well?