如何批量刪除指定的GitHub Repos

smallbone發表於2019-01-19

正常情況下,如果需要刪除GitHub上不需要的repos,手動刪除的操作有點繁瑣。如果只要刪除一個還能接受,手動刪除多個repos就有點浪費時間了。其實我們可以通過GitHub的API介面來批量刪除不需要的repos

  1. 將要刪除的repos按照username\repos-name的格式以一行一個存放到文字檔案中。

如何批量刪除指定的GitHub Repos

  1. GitHub上申請具有刪除repos許可權的token

    如何批量刪除指定的GitHub Repos

  2. 在命令列中執行下面的命令:

  • Linux
while read r;do curl -XDELETE -H 'Authorization: token xxx' "https://api.github.com/repos/$r ";done < repos
複製程式碼
  • Windows(PowerShell)
[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"} }
複製程式碼

相關文章