git rm --cached ios/build/* 

fatal : not removing 'ios / build / build' recursively without -r

Tell me what is it?

  • Try git rm -r --cached ios/build/* - Kosta B.

1 answer 1

judging by the message, one of the names under the mask - ios/build/Build is a directory, not a file.

therefore, you need to add the -r option (act recursively for directories):

 $ git rm -r ...