I have git repo and I want to remove directories.
# deleted: "4.proste i p\305\202aszczyzny/draw.js"
# deleted: "4.proste i p\305\202aszczyzny/index.html"
# deleted: "4.proste i p\305\202aszczyzny/js/input.js"
# deleted: "4.proste i p\305\202aszczyzny/math.js"
# deleted: "4.proste i p\305\202aszczyzny/style.css"
# deleted: "proste i p\305\202aszczyzny/draw.js"
# deleted: "proste i p\305\202aszczyzny/index.html"
# deleted: "proste i p\305\202aszczyzny/js/input.js"
# deleted: "proste i p\305\202aszczyzny/math.js"
# deleted: "proste i p\305\202aszczyzny/style.css"
and when I run for example:
git rm -r 4.proste i p\305\202aszczyzny/draw.js
I get: fatal: pathspec '4.proste' did not match any files
I also tried running: git rm $(git ls-files --deleted) to list all deleted files and remove them. I get the same error. My folder names are so wierd because of polish characters in name. Now I changed them but now I want to remove them form my repo.