Git add not working with .png files?
- by D Lawson
I have a dirty working tree, dirty because I made changes to source files and touched up some images. I was trying to add just the images to the index, so I ran this command:
git add *.png
But, this doesn't add the files. There were a few new image files that were added, but none of the ones that were modified/pre-existing were added.
What…