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?

More than 3 years have passed since last update.

git addを実行した際に、Gitが改行コードをLFからCRLFへ変更しようとするエラーを回避する方法「warning: LF will be replaced by CRLF in *」

Last updated at Posted at 2021-06-23

##原因

Git addを実行した際にファイルの改行コードをLFからCRLFに変更しようとすることでエラーが発生しております。

$ git add <ファイル名>
warning: LF will be replaced by CRLF in <ファイル名>
The file will have its original line endings in your working directory

##回避策

回避方法としては以下コマンドを入力することでCRLFへ変更しなくなります。

$ git config --global core.autoCRLF false

##動作確認
再度 git add のコマンドを入力し、エラーが出力されていないことを確認。

$ git add <ファイル名>

##終わりに
今回はGitにおけるgit addコマンド実行時の改行コードによるエラーの対処方法についてまとめました。
少しでもお役に立てれば幸いです。

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?