org-pivotal is a utility to extend org-mode with Pivotal Tracker abilities
Before using the tracker you must setup your pivotal API key in Emacs. You can obtain the key from the Profile link in the Pivotal Tracker web application.
After obtaining the ky, you have to manually add it to your .emacs.d or .spacemacs like this:
(setq org-pivotal-api-token "your-secret-token")
If you don’t want to set it directly in your Emacs’s .el file, you can export it to shell environment and use getenv
to read it from within Emacs
(setq org-pivotal-api-token (getenv "PIVOTAL_API_TOKEN"))
To enable this package automatically after opening org-mode, add this line to your Emacs’s .el file
(add-hook 'org-mode-hook 'org-pivotal-mode)
Keybindings | Interactive commands | Description |
---|---|---|
C-c ( i | M-x org-pivotal-install-project-metadata | Install selected project’s metadata to buffer |
C-c ( f | M-x org-pivotal-pull-stories | Pull stories to org buffer |
C-c ( p | M-x org-pivotal-push-story | Push current story to Pivotal |
C-c ( t | M-x org-pivotal-pull-story-tasks | Pull current story’s tasks |
Yes, please do! See CONTRIBUTING for guidelines.
See COPYING. Copyright (c) 2018 Huy Duong.