1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

gitが大文字小文字を識別しない

Posted at

前置き

あるプロジェクトでタイプスクリプトを書いていたら、ローカルでは動くのに、CD/CIでのみビルドが失敗していました
ビルド結果を見るとどうやらインポートしようとしているファイルが見つからないとのこと。

Module not found: Can't resolve '../atoms/GameStartButton'

ローカルには同盟ファイルが存在していたのでリモートを確認すると、atoms/gameStartButtonが存在していました。
調べると、gitはデフォルトで大文字小文字を識別しないとのこと

git config core.ignorecase false

以上のコマンドで検知するようになるとのこと
もしくは、一時的に

mv GameStartButton.tsx GameStartButton.tmp.tsx

みたいな感じでリネームするとよいとのこと

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?