轉
比如,專案的控制檔案,一般是不上傳的,現在我使用webstorm,它的.idea目錄,有時候會錯誤的上傳到遠端庫中。
刪除的步驟如下。
將本地.idea目錄改名,這個步驟適合於不是你push該目錄,是別人上傳的:
mv .idea/ .idea_back
如果是自己push的,可略過上面步驟。
刪除.idea目錄下檔案:
git rm .idea/* -r
然後commit:
git commit -a -m 『remove .idea』
再次push就可以了:
git push -u origin master
亡羊補牢,可以增加忽略檔案:
vim .gitignore
在檔案中加入:
.idea/**/*
Git 刪除操作
tom 更新了自己的本地儲存庫並進入src目錄下找到編譯後的二進位制。檢視提交資訊後,他意識到,編譯後的二進位制是由jerry加入的。tom centos src pwd home tom project src tom centos src ls makefile string operation...
git 刪除檔案
本地同步好最新的 修改或者替換你那個有問題的檔案 直接修改 git pull git add git commit m modified file git push origin head your remote branch 括號內可以省略 刪除的話 git pull git rm git com...
git 刪除檔案
本地 與遠端git倉庫端的 已經是同步 一致 的了。想將本地的某個資料夾刪除,然後同步到遠端git倉庫端 git add git status git commit m 無用的目錄刪除 git push origin master執行完此操作之後,登入到遠端git倉庫端,發現本地刪除的目錄依然存在。...