Force delete files or folders using globs
If the matching files or folders are managed by git, theyʼll be deleted and marked as deleted in staging area. Otherwise, theyʼll be deleted permanently (not to the trash).
- Filters the files that should be deleted by using globby
- Maps the matching paths one-by-one to be included in
git rm -rfcommand - Uses rimraf if the matching item isnʼt managed by
git - These processes run concurrently
npm install --global force-del-cli$ force-del --help
Usage
$ force-del [<path|glob> ...]
Options
--cwd=<dir> Current working directory
--verbose List deleted files
Examples
$ force-del silly-faces.jpg
$ force-del '*.jpg' '!too-cute.jpg'
$ force-del foo --cwd=../bar
- force-del – API for this module
- remove-lockfiles - Prevent committing lockfiles
MIT © Lufty Wiranda