How can I export GitHub issues to Excel?

前端 未结 12 1871
逝去的感伤
逝去的感伤 2020-12-07 15:46

How can I export all my issues from an Enterprise GitHub repository to an Excel file? I have tried searching many Stack Overflow answers but did not succeed. I tried this so

12条回答
  •  心在旅途
    2020-12-07 16:25

    To export from a private repo using curl, you can run the following:

    curl -i "https://api.github.com/repos///issues" -u ""

    Where the user has access to the private repo. You can then convert the resulting json into csv using any suitable converter as suggested in other answers.

    Find authentication reference here.

提交回复
热议问题