1. 程式人生 > >git push之後刪除遠端倉庫node_modules和dist

git push之後刪除遠端倉庫node_modules和dist

  1. 在**.gitignore**檔案上寫上:
    node_modules/
    dist/

  2. 進入倉庫目錄,刪除github倉庫上.gitignore上新加的選項
    git rm -r --cached .

  3. 然後重新新增要提交的選項
    git add .
    git commit -m 'remove node_modules and dist

  4. 最後在git push 到遠端倉庫上就可以了。
    git push