I got 100 of images which I needed to rename from .JPG to .jpg. I already wrote a gulp task and renamed them all. Now Git is not recognizing the change.
I found this on single files: I change the capitalization of a directory and Git doesn't seem to pick up on it
But I don't want to do this on each image by hand is it possible to use s.th. like this
git mv **/*/.JPG **/*.temp
git mv **/*/.temp **/*.jpg
The images are all in diff. folders! E.g. src/a, src/a/b src/b ...