How can I export GitHub issues to Excel?

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

    The hub command-line wrapper for github makes this pretty simple.

    You can do something like this:

    $ hub issue -f "%t,%l%n" > list.csv
    

    which gives you something like this

    $ more issue.csv
    
    Issue 1 title, tag1 tag2
    Issue 2 title, tag3 tag2
    Issue 3 title, tag1
    

提交回复
热议问题