GitHub批量刪除repository

2021-10-06 03:07:44 字數 663 閱讀 3513

最近在清理自己的github專案時,發現很多fork的沒用的庫,想一次性快捷地批量刪除,而不是乙個乙個點進setting裡面手工刪除,便找到了這篇文章:

總結起來是4步:

建立乙個檔案,例如命名為repos.txt,編寫需要刪除的庫:

aaa\repos1

aaa\repos2

aaa表示自己的使用者名稱,repos1表示repository的名稱,需要刪除多少,就按照這種格式寫多少行,注意使用者名稱與repos之間是反斜槓

訪問 ,獲取具有刪除庫許可權的token終端執行下面命令進行刪除:

[net.servicepointmanager]::securityprotocol =

[net.securityprotocoltype]::tls12

get-content repos.txt | foreach-object

}

執行完後會有型別如下輸出:

![在這裡插入描述](

批量刪除 Github 倉庫

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

Django 刪除 批量刪除

刪除 修改與刪除等的操作,都從前台傳來乙個id獲取後執行 class delete two cate view def get self,request id request.get.get id try two twocate.objects.filter id id delete except ...

hibernate批量修改,批量刪除

在hibernate應用中如何處理批量更新和批量刪除?批量更新是指在乙個事務中更新大批量資料,批量刪除是指在乙個事務中刪除大批量資料。以下程式直接通過hibernate api批量更新customers表中年齡大於零的所有記錄的age欄位 tx session.begintransaction it...