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?

More than 3 years have passed since last update.

php.logをgit管理から外す方法(PHP初心者)

Posted at

#はじめに

素のPHPにてWEBアプリを作成中、ソース管理で、php.logを管理から外す方法についてつまづいたので共有します。

##環境
 【開発環境】
  MacOS Catalina 10.15.5
 【言語】
  PHP 7.3.9
 【バージョン管理】
  Git 2.24.3
##手順
① .gitignoreファイル作成
②管理から外したいファイル(php.log)を.gitignoreファイル内に書き込み
③コミット→プッシュ

これで管理から外すことができるというネット情報を見つけ実行。

参考:https://www-creators.com/archives/1662

##しかしながら全く反映されず。
ずっとこの常態。。↓

【ターミナル(git stauts実行時)】
modified:   .gitignore
modified:   php.log

##キャッシュが削除されていないと反映されない
キャッシュが削除されていないと反映されないらしく。下記を実行。


$ git rm -r --cached php.log  //php.logファイルのキャッシュを削除

その後、コミット→プッシュで

【ターミナル(git stauts実行時)】
modified:   .gitignore

無事、php.logを管理から外すことに成功しました。

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?