清空github倉庫,而不是刪除重新建立

2022-06-21 17:48:11 字數 483 閱讀 2472

今天由於想清空github倉庫重新來過,後來不知道怎麼解決,於是上網找了資料,順便發個博文

-- remove the history from

(從中刪除歷史記錄)

rm -rf .git

-- recreate the repos from the current content only

(僅從當前內容重新建立儲存庫)

git init

git add .

git commit -m "initial commit"

-- push to the github remote repos ensuring you overwrite history

(推送到你的遠端倉庫,以確保覆蓋您的歷史記錄)

git remote add origin [email protected]:/.git

git push -u --force origin master

點選預覽

GitHub 刪除已有倉庫

作為github的入門使用者,我們可能會建一些簡單的倉庫來學習git操作。毫無疑問,這些簡單的倉庫沒有任何的實用價值,因此有時候我們會選擇刪除這些沒有專案意義的倉庫。本文就如何刪除github上已經建立的倉庫,給出圖示步驟。看完刪除github已有倉庫的教程後,你有什麼感想呢?再看看最後一幅圖,是否...

GitHub刪除已有倉庫

之前都只是建立,還沒試過刪除,講道理,如果第一次找刪除按鈕,還是有點小曲折的,特記錄如下 1 先找到你要刪除的倉庫 2 點進去,到具體專案位址,找到setting 3 點進去,一直往下翻,會看到紅色邊框到表單框 danger zone表示危險操作 4 點選 delete,會出現乙個彈出框,需要填寫專...

批量刪除 Github 倉庫

無意間建立的 demo 倉庫太多 fork 了一堆從未二次開啟的倉庫 遷移倉庫到其他地方管理 git clone git github.com itzhangbao remove repos.git cd remove repos建立 token 1 建立 token 位置 github.com 點...