3
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 1 year has passed since last update.

.gitignore に .env ファイルを追加しても反映されない問題の解決方法

Posted at

はじめに

.gitignore ファイルに.envファイルを追加しても反映されない現象を3回経験したので、
備忘録として簡単にまとめました。

この問題は、Gitのキャッシュが原因であることが多く、
元々 .env ファイルを Git のバージョン管理対象項目に設定していた際によく起こります。

解決策

次のコマンドを実行してキャッシュを削除することで、
.envファイルがバージョン管理から除外されるようになります。

git rm --cached .env

自身の場合、毎回これで動作するようになりました!✨
今回は以上です。

3
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
3
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?