I have changed a few files name by de-capitalize the first letter, as in Name.jpg to name.jpg. Git does not recognize this changes and I had to de
Name.jpg
name.jpg
I used those following steps:
git rm -r --cached . git add --all . git commit -a -m "Versioning untracked files" git push origin master
For me is a simple solution