LoginSignup
3
0

More than 5 years have passed since last update.

GitHub にて任意の Organizations の Repository(Private 含む) の List を得る方法

Posted at

まず Personal access token を用意する

から、Generate New Token で。 Scope は repo をフルチェック。

curl で List を得る

curl -u :TOKEN "https://api.github.com/orgs/ORGNAME/repos?page=1&per_page=100" | jq '.[].html_url'
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0