BFG remove multiple folders
The argument to --delete-folders
is a glob expression, so you should be able to just comma-separate the folder names, like this:
$ bfg --delete-folders "{folderA,folderB,folderC}" my-repo.git
Good luck!
Full disclosure: I'm the author of the BFG Repo-Cleaner.
You can delete multiple folder using the command like this:
$ bfg --delete-folders "{List of folder separated by comma}" git-repo.git
Thanks !