1. 程式人生 > >三條命令解決Git 如何刪除遠端伺服器檔案同時保留本地檔案

三條命令解決Git 如何刪除遠端伺服器檔案同時保留本地檔案

有時候會想把github上的檔案刪除,但是本地倉庫裡的檔案想保留下來該怎麼辦,只要用三條命令就能完成了

git rm --cached filename/-r directory
git commit "xxxx"
git push

1.刪除github檔案,本地保留

git rm --cached test.txt
git commit -m "delete file"
git push

此時github上已經不存在了

2.刪除遠端code 資料夾,本地保留
一定要注意,刪除資料夾要使用-r 引數

git rm --cached -r code
git commit -m "delete directory"
git push