LoginSignup
32
15

More than 5 years have passed since last update.

Git 大文字·小文字ファイル変更を差分対象の設定にする方法

Last updated at Posted at 2018-02-09

差分対象にしているか確認するコマンド

Windows10

git config -l --local |findstr core.ignorecase

Mac OS X

git config -l --local | grep core.ignorecase

戻り値

// 差分対象にしていない
core.ignorecase=true

// 差分対象にしている
core.ignorecase=false

差分対象を変更

// 差分対象にしない
git config core.ignorecase true

// 差分対象にする
git config core.ignorecase false
32
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
32
15