How can I export GitHub issues to Excel?

前端 未结 12 1862
逝去的感伤
逝去的感伤 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:32

    You can also try https://github.com/remoteorigin/git-issues-downloader but be sure to used the develop branch. The npm version and master branch is buggy.

    Or you can use this patched version with

    npm install -g https://github.com/mkobar/git-issues-downloader
    

    and then run with (for public repo)

    git-issues-downloader -n -p none -u none https://github.com//
    

    or for a private repo:

    git-issues-downloader -n -p  -u  https://github.com//
    

    Works great.

提交回复
热议问题