Skip to content

Instantly share code, notes, and snippets.

@JangSungChul
Created December 20, 2019 03:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JangSungChul/d70e4b022535f2253ad4124b35c839a2 to your computer and use it in GitHub Desktop.
Save JangSungChul/d70e4b022535f2253ad4124b35c839a2 to your computer and use it in GitHub Desktop.
gitでファイル名の大文字、小文字の変更を検知
# gitはdefault設定でファイル名の大文字小文字の変更は無視するようになっている
# Check
git config -l --local | grep core.ignorecase
core.ignorecase=true
# Set
git config core.ignorecase false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment