Git add will not create specific files

I am running msysgit 1.8.1 on Win8. I'm trying to make some changes to the project I'm working on. I am trying to make changes to the vcxproj and vcxproj.filters files, but no matter what I do, they always appear as uninstalled. I thought this might be a case-sensitive issue, but even using the core.ignorecase = true option doesn't matter. Does anyone have any ideas how to fix this?

Here is a transcript of my attempt to put one of the files.

C:\sdev\realtick [dev +2 ~2 -0 | +0 ~2 -0]> git status # On branch dev # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # modified: rtpack.props # modified: rtpack.targets # new file: tools/TALRGB/TalRgb32.idb # new file: tools/TALRGB/packages.props # # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: TOOLS/TALRGB/TalRgb.vcxproj # modified: TOOLS/TALRGB/TalRgb.vcxproj.filters # C:\sdev\realtick [dev +2 ~2 -0 | +0 ~2 -0]> git add TOOLS/TALRGB/TalRgb.vcxproj C:\sdev\realtick [dev +2 ~2 -0 | +0 ~2 -0]> git status # On branch dev # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # modified: rtpack.props # modified: rtpack.targets # new file: tools/TALRGB/TalRgb32.idb # new file: tools/TALRGB/packages.props # # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: TOOLS/TALRGB/TalRgb.vcxproj # modified: TOOLS/TALRGB/TalRgb.vcxproj.filters # C:\sdev\realtick [dev +2 ~2 -0 | +0 ~2 -0]> 
+3
source share

All Articles