我可以从命令行向github添加问题吗?

Jon*_*han 22 git github

我是git的新手,我希望能够通过github映射我的项目的计划和进度.问题是,需要大量点击github.com上的浏览器,我希望能够通过命令行程序自动完成任务.是否有github的命令行界面?

bdu*_*kes 21

有一个ghi宝石可以用来管理问题.

The most commonly used ghi commands are:
   list        List your issues (or a repository's)
   show        Show an issue's details
   open        Open (or reopen) an issue
   close       Close an issue
   edit        Modify an existing issue
   comment     Leave a comment on an issue
   label       Create, list, modify, or delete labels
   assign      Assign an issue to yourself (or someone else)
   milestone   Manage project milestones
Run Code Online (Sandbox Code Playgroud)


Nor*_*ner 9

您可以查看此cli以获取Github问题API.请注意,这仅适用于Github问题.

希望这可以帮助.

[编辑]原始答案提到了这个应用程序,它不再起作用并推荐ghi.


Xav*_*hot 9

With Github's new official CLI (command line interface):

gh issue create --title "How to create an issue?" --body "I need a github CLI"
Run Code Online (Sandbox Code Playgroud)

See additional details and options and installation instructions.