在上傳工程到git上時,有時候會把本地的一些eclipse配置文件傳到服務器上,這時你先刪除本地,再同步服務器,顯然是不合理的。git提供了一個好的解決方法,能夠直接刪除服務器文件,同時不影響本地文件,命令以下git
git rm --cached filename/-r directory git commit "xxxx" git push
1.刪除服務器文件,本地保留github
git rm --cached useless.log git commit -m "remove file from remote repository" git push
此時github上已經不存在了服務器
2.刪除遠程useless 文件夾,本地保留
必定要注意,刪除文件夾要使用-r 參數less
git rm --cached -r useless git commit -m "remove directory from remote repository" git push