0
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】LF will be replaced by CRLF the next time Git touches it 警告の解消方法

Last updated at Posted at 2024-02-18

背景

新しく使い始めたPCのgit、vscodeの環境を構築し開発環境を整えていた。
vscodeのターミナルでgit add .を実行した際に下記の警告が表示された。

警告

git add .を実行時に下記のwarningがターミナルに表示。

warning: in the working copy of 'src/App.tsx', LF will be replaced by CRLF the next time Git touches it

原因

以下、DeepLで日本語に翻訳してみた内容です。

警告:作業コピーの'src/App.tsx'では、次にGitが触ったときにLFがCRLFに置き換えられます。

Gitが改行コードをLFからCRLFに変更しようとしいてるみたい。

解決策

次のコマンドを実行し、git addコマンド実行時に警告が表示されなくなった事を確認できた。

git config --global core.autoCRLF false
0
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
0
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?