1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

githubに追跡無視したいファイルをアップした後、.gitignoreファイルの設定を反映させる方法

Posted at

はじめに

.gitignoreファイルを作成するの忘れて、プッシュしたくないファイルをgithub上から消したい&.gitignoreファイルの設定を適用したい時の備忘録✍️

手順

① .gitignoreファイルを作成する
② githubの追跡キャッシュを削除する

// キャッシュを削除
git rm -r --cached .

③ 再度プッシュ対象のファイル達をステージングする ※これで無視したいファイルを除いたフォルダやファイルだけがステージングされる

// ステージング
git add .

④ コミットメッセージに「追跡設定をする」的なメッセージを付ける ※個人だと不要だが複数人で開発しているようなら付けた方が丁寧⭕️
⑤ プッシュする

注意点として、追跡無視の設定をすることで他の人がpullする時に反映されなくなる訳なのでFTPなどを使用したり共有できる環境があるといい🙆‍♀️

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?