Magit plugin for Gerrit Code Review
If you have a recent Emacs with package.el
, you can install magit-gerrit
from MELPA.
Otherwise, you'll have to download magit-gerrit.el
and ensure it is in
a directory in your load-path
.
Then:
(require 'magit-gerrit)
;; if remote url is not using the default gerrit port and
;; ssh scheme, need to manually set this variable
(setq-default magit-gerrit-ssh-creds "[email protected]")
;; if necessary, use an alternative remote instead of 'origin'
(setq-default magit-gerrit-remote "gerrit")
- Check out branch, make changes, and commit...
- Gerrit Push Commit for Code Review => T P
- Gerrit Add Reviewer => T A (optional)
- Wait for code review and verification (approvals updated in magit-status)
- Gerrit Submit Review => T S
For simple setups, it should be enough to set the default value for
magit-gerrit-ssh-creds
and magit-gerrit-remote
as shown above.
For per project configurations, consider using buffer local or directory local variables.
/home/dev/code/prj1/.dir-locals.el
:
((magit-mode .
((magit-gerrit-ssh-creds . "[email protected]")
(magit-gerrit-remote . "gerrit"))))
Brian Fransioli ( [email protected] )
Thanks for using and improving magit-gerrit! Enjoy!
Please help improve magit-gerrit! Pull requests welcomed!