On Tue, Aug 10, 2010 at 01:59:57AM +0400, Ivanov Dmitry wrote:
> The http://orgmode.org/worg/org-contribute.php#sec-3 says:
> "Git can be used to make patches and send them via email - this is
> perfectly fine for minor changes. These patches will be
> automatically registered at John Wiegley's patchwork server"
>
> Please, tell me, what commands should I run to create a patch,
> upload it and get any feedback from the senior developers?

The following command will make a patch between the staging area
(in your computer), and the file you modified:

    git diff -p org-whatever.el

If you already committed your changes to your index (staging area),
then you should compare against a particular branch (in this example,
origin/master):

    git diff -p origin/master org-whatever.el

You email the output to this mailing list, adding [PATCH] to the
subject, and description of what you fixed or changed.

At least, this is how I do it.

Regards,
.j.

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to