Delete non git directory in git bash, windows
rmdir
will not work if directory is empty
Try
rm -rf yo-2
git-bash
is a Linux like shell
If you are trying to remove an entire directory regardless of contents, you could use:
rm <dirname> -rf
just use the command below:
rm -rfv mydirectory