やりたいこと
.gitignoreの更新
まず、.gitignore に frontend/ を追記し、frontend フォルダを無視対象に指定します。
bash
コピーする
# .gitignore
frontend/
キャッシュの削除
すでにGitの追跡対象となっているフォルダを「無視」させるには、Gitのキャッシュを削除する必要があります。以下のコマンドを実行して、frontend フォルダを追跡対象から外します。
bash
コピーする
git rm -r --cached frontend
コミット
変更をコミットし、リモートリポジトリにプッシュします。
bash
コピーする
git commit -m "Remove frontend folder from tracking and update .gitignore"
git push
やったこと
手順は参考サイト通り
あとでまとめます
コメント