git rm -r --cached dirname git commit -m 'remove dirname' git push origin master
git rm不會刪除本地目錄,只是將該目錄從git版本中移除,push到遠端,遠端倉庫將刪除該資料夾。
此外還要將此資料夾加入到.gitignore檔案中。
git rm -r --cached dirname git commit -m 'remove dirname' git push origin master
git rm不會刪除本地目錄,只是將該目錄從git版本中移除,push到遠端,遠端倉庫將刪除該資料夾。
此外還要將此資料夾加入到.gitignore檔案中。