如何批量刪除指定的GitHub Repos

正常狀況下,若是須要刪除GitHub上不須要的repos,手動刪除的操做有點繁瑣。若是隻要刪除一個還能接受,手動刪除多個repos就有點浪費時間了。其實咱們能夠經過GitHub的API接口來批量刪除不須要的reposgit

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

  1. GitHub上申請具備刪除repos權限的token
    github

  2. 在命令行中運行下面的命令:shell

  • 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"} }
複製代碼
相關文章
相關標籤/搜索