<ul style="border: none; font-size: 14px; margin: 0px 0px 20px 2.5em; outline: none; padding: 0px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #666666; font-family: Arial, Verdana, sans-serif; line-height: 24px;"> <li>用文字編輯器打開 .git/config ,找到 ignorecase = true ,然後把 true 改成 false 就可以了,如果沒有找到這行,就自己在 core 那個區塊裡加一行 ignorecase = false 也可以達到一樣的效果。</li> <li>進到要修改的資料夾,在 terminal 輸入 git config core.ignorecase false ,可以讓目前的 git repository case sensitive。</li> </ul>