aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2015-09-11 08:34:46 -0700
committerPaul Eggert2015-09-11 08:34:46 -0700
commit279303adfc6d6ba91db788c2b85333e3fc46f39b (patch)
tree3fe9c0b6ca485d35b9549d25c6f250d1c1b40e5a
parenta0ec54ae073abd671bd43002eff0267f5fe8b306 (diff)
downloademacs-279303adfc6d6ba91db788c2b85333e3fc46f39b.tar.gz
emacs-279303adfc6d6ba91db788c2b85333e3fc46f39b.zip
* CONTRIBUTE: Move send-email here from git-workflow.
-rw-r--r--CONTRIBUTE4
-rw-r--r--admin/notes/git-workflow14
2 files changed, 5 insertions, 13 deletions
diff --git a/CONTRIBUTE b/CONTRIBUTE
index 7e697ddd89a..5821ee5caca 100644
--- a/CONTRIBUTE
+++ b/CONTRIBUTE
@@ -234,7 +234,9 @@ by following links from http://savannah.gnu.org/mail/?group=emacs .
234 234
235To email a patch you can use a shell command like 'git format-patch -1' 235To email a patch you can use a shell command like 'git format-patch -1'
236to create a file, and then attach the file to your email. This nicely 236to create a file, and then attach the file to your email. This nicely
237packages the patch's commit message and changes. 237packages the patch's commit message and changes. To send just one
238such patch without additional remarks, you can use a command like
239'git send-email --to=bug-gnu-emacs@gnu.org 0001-DESCRIPTION.patch'.
238 240
239** Document your changes. 241** Document your changes.
240 242
diff --git a/admin/notes/git-workflow b/admin/notes/git-workflow
index 40dfa6b7410..92dc79127e3 100644
--- a/admin/notes/git-workflow
+++ b/admin/notes/git-workflow
@@ -50,18 +50,8 @@ Sending patches
50=============== 50===============
51 51
52If you lack push access or would like feedback before pushing a patch, 52If you lack push access or would like feedback before pushing a patch,
53you can send a patch file as a bug report. After committing your 53you commit your change locally and then send a patch file as a bug report
54change locally, do: 54as described in ../../CONTRIBUTE.
55
56git format-patch -1
57
58This creates a file 0001-DESCRIPTION.patch containing the patch, where
59DESCRIPTION comes from the first line of your patch's commit message.
60You can attach the patch file to email that you send to
61bug-gnu-emacs@gnu.org. You can also configure git to email patches
62directly (see <http://git-scm.com/docs/git-send-email>) and do:
63
64git send-email --to=bug-gnu-emacs@gnu.org 0001-DESCRIPTION.patch
65 55
66 56
67Backporting to emacs-24 57Backporting to emacs-24