正常狀況下,若是須要刪除GitHub上不須要的repos
,手動刪除的操做有點繁瑣。若是隻要刪除一個還能接受,手動刪除多個repos就有點浪費時間了。其實咱們能夠經過GitHub的API接口來批量刪除不須要的repos
。git
repos
按照username\repos-name
的格式以一行一個存放到文本文件中。在GitHub上申請具備刪除repos
權限的token
。
github
在命令行中運行下面的命令:shell
while read r;do curl -XDELETE -H 'Authorization: token xxx' "https://api.github.com/repos/$r ";done < repos
複製代碼
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
get-content D:\repolist.txt | ForEach-Object { Invoke-WebRequest -Uri https://api.github.com/repos/$_ -Method 「DELETE」 -Headers @{"Authorization"="token xxx"} }
複製代碼