Generate a patch according to emacs-devel CONTRIBUTE guidelines
 
 
 
 
Go to file
dickmao fd259cf6ce deal with easy-mmode-defmap to defvar-keymap some other time. 2022-12-08 20:23:35 -05:00
features troubles with permanent-local 2019-11-07 00:16:11 -05:00
test whitespace 2020-02-17 06:59:02 -05:00
tools exception for package description 2020-02-17 07:01:56 -05:00
.gitignore gitignore 2020-02-17 07:01:47 -05:00
.travis.yml don't use dickmao/package-lint.el 2019-11-06 21:09:52 -05:00
Cask barf-p, singleton-p, and fix package-lint once and for all 2019-11-07 17:52:40 -05:00
LICENSE Create LICENSE 2020-02-16 14:20:21 -05:00
Makefile emacs-26 introduction split-window-no-error which we replicate here 2019-11-05 20:22:34 -05:00
README.in.rst readme [skip ci] 2020-02-17 07:01:56 -05:00
README.rst readme [skip ci] 2020-02-17 07:01:56 -05:00
magit-patch-changelog.el deal with easy-mmode-defmap to defvar-keymap some other time. 2022-12-08 20:23:35 -05:00
screencast.gif update screencast for set-window-start 2019-11-21 18:20:54 -05:00

README.rst

|build-status|

Generate a patch according to emacs-mirror/CONTRIBUTE.

.. |build-status|
   image:: https://travis-ci.com/dickmao/magit-patch-changelog.svg?branch=master
   :target: https://travis-ci.com/dickmao/magit-patch-changelog
   :alt: Build Status
.. |melpa-dev|
   Image:: https://melpa.org/packages/magit-patch-changelog-badge.svg
   :target: http://melpa.org/#/magit-patch-changelog
   :alt: MELPA current version
.. |melpa-stable|
   image:: http://melpa-stable.milkbox.net/packages/ein-badge.svg
   :target: http://melpa-stable.milkbox.net/#/ein
   :alt: MELPA stable version

.. image:: screencast.gif

Install
=======
As described in `Getting started`_, ensure melpa's whereabouts in ``init.el`` or ``.emacs``::

   (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))

Then

::

   M-x package-refresh-contents RET
   M-x package-initialize RET
   M-x package-install RET magit-patch-changelog RET

And, finally add (before any mentions of magit) in your ``.emacs``,

::

   (with-eval-after-load 'magit
     (require 'magit-patch-changelog))

Alternatively, copy ``magit-patch-changelog.el`` to a directory among ``C-h v RET load-path`` and add ``(require 'magit-patch-changelog)`` to ``.emacs``.

Usage
=====
From the magit status buffer (``C-x g``)::

   W c e

.. _Getting started: http://melpa.org/#/getting-started