Win8でmsysgit 1.8.1を実行しています。私が取り組んでいるプロジェクトにいくつかの変更を加えようとしています。vcxproj および vcxproj.filters ファイルへの変更をステージングしようとしていますが、何をしてもステージングされていないと表示されます。大文字と小文字の区別の問題かもしれないと思いましたが、core.ignorecase=true オプションを使用しても違いはありません。誰にもこれを修正する方法のアイデアはありますか?
以下は、ファイルの 1 つをステージングしようとした私の試みの記録です。
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]>