我可以使用组织模式同步github问题和里程碑吗?


Answers:


3

似乎有一个分支,org-sync分支的最新更新于2018年12月。它在MELPA上安装

M-x package-install RET org-sync RET

添加到初始化(.emacs或.emacs.d / init.el)

(mapc 'load
      '("org-sync" "org-sync-bb" "org-sync-github" "org-sync-redmine"))

使用:在新的org-mode-buffer中

M-x org-sync-import

配置登录

(setq org-sync-github-auth '("ostesting" . "thisisostesting42"))

要添加问题,请创建子标题

** OPEN my test issue

并使用上传M-x org-sync


14

有一个项目允许这种功能org-sync。(或者,org-sync有一个GitHub后端。)您可以在这里找到它。

不幸的是,它似乎没有得到积极维护。

我注意到的主要问题是它不支持同步问题的注释。至于里程碑,它确实会附加一个项目PROPERTIES,告诉您问题属于哪个项目,但看起来您无法直接编辑里程碑。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.