GitHub批量删除仓库
Posted yifeichongtian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitHub批量删除仓库相关的知识,希望对你有一定的参考价值。
正常情况下,如果需要删除GitHub上不需要的repos,手动删除的操作有点繁琐。如果只要删除一个还能接受,手动删除多个repos就有点浪费时间了。其实我们可以通过GitHub的API接口来批量删除不需要的repos。
- 将要删除的repos按照username
epos-name的格式以一行一个存放到文本文件中。
- 在GitHub上申请具有删除repos权限的token。
- 在命令行中运行下面的命令:
- 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:
epolist.txt | ForEach-Object { Invoke-WebRequest -Uri https://api.github.com/repos/$_ -Method “DELETE” -Headers @{"Authorization"="token xxx"} }
以上是关于GitHub批量删除仓库的主要内容,如果未能解决你的问题,请参考以下文章