I\'m having issues where I can\'t add files to my repository.
I\'m using GIT on windows, in Aptana Studio for some Ruby development.
I\'ve managed to push a
Had the same issue with a repo that I cloned from SiteGround Git to my mac. The freshly cloned repo had a list of changed files that git status
said needed to be added to the commit, but trying to add or checkout any of them didn't do anything at all.
For some reason there were case changes in the filenames (e.g. .jpg -> .JPG). The solution was to simply git mv
the filename the OS was using to the name git was using, e.g.:
git mv File_That_Wont_Add.txt File_THAT_WONT_Add.txt