Seeking a way to clone the issues for github projects

前端 未结 2 589
闹比i
闹比i 2021-01-05 06:02

I would like to be able to use git to clone the issues for various projects on github. I know I can clone the code and the wiki (if it exists). I cannot find a way to clone

2条回答
  •  情话喂你
    2021-01-05 06:30

    Thanks to @madhu-bhat's suggestion I read the documents on GitHub's v3 API and discovered examples such as

    curl -i "https://api.github.com/repos/vmg/redcarpet/issues?state=closed"

    which I then revised to get the open issues for one of our projects:

    curl -i "https://api.github.com/repos/kiwix/kiwix-android/issues?state=open"

    This approach does what I need and allows me to filter by the state, etc. +1 for StackOverflow.

提交回复
热议问题