在上傳工程到git上時,有時候會把本地的一些eclipse配置文件傳到中央服務器上,這時你先刪除本地,再同步中央服務器,顯然是不合理的。git提供了一個好的解決方法,能夠直接刪除中央服務器文件,同時不影響本地文件,命令以下git
git rm --cached filename/-r directory git commit "xxxx" git push
下面做個例子,在github上建一個useless.log文件,同時再建一個useless的文件夾,裏面隨便扔點東西 github
先刪除文件服務器
git rm --cached useless.log git commit -m "remove file from remote repository" git push
此時github上已經不存在了 less
下面刪除遠程useless 文件夾eclipse
git rm --cached -r useless **必定要注意,刪除文件夾要使用-r 參數** git commit -m "remove directory from remote repository" git push
結果如圖所示code
大功告成!圖片