git操作基礎 刪除資料夾

2021-08-30 10:43:23 字數 2995 閱讀 999

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!

項番命令

no.1

git rm -rf 資料夾名

no.2

git add -a

no.3

git commit -m 「delete dir」

no.4

git push

[root@host31 src]# git rm -rf staticrm 'src/static/bootstrap/css/bootstrap-theme.css'rm 'src/static/bootstrap/css/bootstrap-theme.css.map'rm 'src/static/bootstrap/css/bootstrap-theme.min.css'rm 'src/static/bootstrap/css/bootstrap-theme.min.css.map'rm 'src/static/bootstrap/css/bootstrap.css'rm 'src/static/bootstrap/css/bootstrap.css.map'rm 'src/static/bootstrap/css/bootstrap.min.css'rm 'src/static/bootstrap/css/bootstrap.min.css.map'rm 'src/static/bootstrap/fonts/glyphicons-halflings-regular.eot'rm 'src/static/bootstrap/fonts/glyphicons-halflings-regular.svg'rm 'src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf'rm 'src/static/bootstrap/fonts/glyphicons-halflings-regular.woff'rm 'src/static/bootstrap/fonts/glyphicons-halflings-regular.woff2'rm 'src/static/bootstrap/js/bootstrap.js'rm 'src/static/bootstrap/js/bootstrap.min.js'rm 'src/static/bootstrap/js/npm.js'[root@host31 src]#此時已經將本地資料夾同時刪除[root@host31 src]# ls staticls: cannot access static: no such file or directory[root@host31 src]#[root@host31 src]# git add -a[root@host31 src]# git commit -m "delete static dir"[master b210daa] delete

static dir 16 files changed, 10045 deletions(-) delete mode 100644 src/static/bootstrap/css/bootstrap-theme.css delete mode 100644 src/static/bootstrap/css/bootstrap-theme.css.map delete mode 100644 src/static/bootstrap/css/bootstrap-theme.min.css delete mode 100644 src/static/bootstrap/css/bootstrap-theme.min.css.map delete mode 100644 src/static/bootstrap/css/bootstrap.css delete mode 100644 src/static/bootstrap/css/bootstrap.css.map delete mode 100644 src/static/bootstrap/css/bootstrap.min.css delete mode 100644 src/static/bootstrap/css/bootstrap.min.css.map delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.eot delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.svg delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.woff delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 src/static/bootstrap/js/bootstrap.js delete mode 100644 src/static/bootstrap/js/bootstrap.min.js delete mode 100644 src/static/bootstrap/js/npm.js[root@host31 src]# git pushusername for

'': liumiaocnpassword for

'':counting objects: 5, done.compressing objects: 100% (3/3), done.writing objects: 100% (3/3), 277 bytes | 0 bytes/s, done.total 3 (delta 2), reused 0 (delta 0)remote: resolving deltas: 100% (2/2), completed with

2 local objects.to /liumiaocn/cycle

72009e4..b210daa  master -> master[root@host31 src]#

給我老師的人工智慧教程打call!

git操作 刪除遠端資料夾

如何刪除git上的遠端資料夾 這裡以刪除test資料夾為案例 git rm r cached test cached不會把本地的test刪除 git commit m delete test dir git push origin master如果誤提交的的資料夾比較多,方法1也比較繁瑣 直接修改 ...

git 刪除遠端資料夾

由於本地修改了資料夾大全名大小寫的原因,同步到git上並不區分大小寫,造成了一些檔案同步不了,所以要先把git遠端庫上資料夾刪除掉,然後再重新同步 如下,我把src裡的全部移除,但是本地檔案還保留。git rm r n cached build n 加上這個引數,執行命令時,是不會刪除任何檔案,而是...

徹底刪除git 檔案 資料夾

前兩天不小心上傳了乙個大的資料夾,幾百兆左右,後來發現沒有必要放到git 上,然後再本地刪除後重新提交了一版,但是後來發現 重新clone的source檔案大小依然是幾百兆,跟原來沒有變化。後才經過查閱資料才知道,原來檔案一直存在於git倉庫中,便於你的恢復,普通的刪除並不能真的將檔案從倉庫中移除。...