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?

.gitignoreにファイルを追加したが反映されなかった時の対処法

Posted at

問題

.gitignoreファイルへgithubに公開したくなかった.envを追加したが、反映されず、.envが公開されたままになってしまっていた。

解決策

以下のコマンドを入力し(どちらでもよい)、キャッシュを削除してからコミット・プッシュした。

$ git rm -r --cached 
$ git rm -r --cached ファイル名 //これでもよい

まとめ

このような問題は経験して慣れるしかないと思ってます。開発する中でこのような問題を経験として吸収することが大事だと思います。

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?