1. 程式人生 > 其它 >刪除github中的資料夾

刪除github中的資料夾


在github上只能刪除倉庫,卻無法刪除資料夾或檔案, 所以只能通過命令來解決

首先進入你的master資料夾下, Git Bash Here ,開啟命令視窗

$ git --help # 幫助命令

$ git pull origin master # 將遠端倉庫裡面的專案拉下來

$ dir # 檢視有哪些資料夾

$ git rm -r --cached target # 刪除target資料夾
$ git commit -m '刪除了target' # 提交,新增操作說明

$ git push -u origin master # 將本次更改更新到github專案上去

操作完成.

注:本地專案中的target資料夾不收操作影響,刪除的只是遠端倉庫中的target, 可放心刪除

每次增加檔案或刪除檔案,都要commit 然後直接 git push -u origin master,就可以同步到github上了
————————————————
版權宣告:本文為CSDN博主「wudinaniya」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處連結及本宣告。
原文連結:https://blog.csdn.net/wudinaniya/article/details/77508229