Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 51 additions & 2 deletions README.org
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#+title: magit-standup
#+author: István Karaszi

[[https://melpa.org/#/magit-standup][file:https://melpa.org/packages/magit-standup-badge.svg]]

Collect recent git commits across multiple repositories and format them as org-mode standup notes.

[[file:screenshots/standup-buffer.png]]
Expand All @@ -22,11 +24,58 @@ Collect recent git commits across multiple repositories and format them as org-m

* Installation

** With use-package and straight.el
** From MELPA

The package is on [[https://melpa.org/#/magit-standup][MELPA]]. If you do not
have MELPA in =package-archives=, add it first:

#+begin_src emacs-lisp
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
#+end_src

Then install the package:

#+begin_example
M-x package-refresh-contents RET
M-x package-install RET magit-standup RET
#+end_example

** With use-package

#+begin_src emacs-lisp
(use-package magit-standup
:straight (:host github :repo "function-artisans/magit-standup"))
:ensure t
:custom
(magit-standup-repos '("~/Projects"))
(magit-standup-authors '("you@example.com")))
#+end_src

** With Doom Emacs

Add the package to =~/.config/doom/packages.el=:

#+begin_src emacs-lisp
(package! magit-standup)
#+end_src

Configure the package in =~/.config/doom/config.el=:

#+begin_src emacs-lisp
(use-package! magit-standup
:defer t
:config
(setq magit-standup-repos '("~/Projects")
magit-standup-authors '("you@example.com")))
#+end_src

Run =doom sync= and restart Emacs.

** With straight.el

#+begin_src emacs-lisp
(straight-use-package 'magit-standup)
#+end_src

** Manual
Expand Down
Loading