既にリモートリポジトリ上で管理されているリソースは、
後から.gitignoreに設定してもリモート上は残ったままとなる。
対象リソースが大量にある場合は以下のコマンドで一括削除できる。
git rm --cached `git ls-files -i --full-name --exclude-from=.gitignore`
その後、commit & pushすればOK。
Go to list of users who liked
More than 5 years have passed since last update.
既にリモートリポジトリ上で管理されているリソースは、
後から.gitignoreに設定してもリモート上は残ったままとなる。
対象リソースが大量にある場合は以下のコマンドで一括削除できる。
git rm --cached `git ls-files -i --full-name --exclude-from=.gitignore`
その後、commit & pushすればOK。
Register as a new user and use Qiita more conveniently
Go to list of users who liked