summaryrefslogtreecommitdiffstats
path: root/documentation/contributor-guide/recipe-style-guide.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/contributor-guide/recipe-style-guide.rst')
-rw-r--r--documentation/contributor-guide/recipe-style-guide.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/documentation/contributor-guide/recipe-style-guide.rst b/documentation/contributor-guide/recipe-style-guide.rst
index 08d8fb4259..142c02db1f 100644
--- a/documentation/contributor-guide/recipe-style-guide.rst
+++ b/documentation/contributor-guide/recipe-style-guide.rst
@@ -409,3 +409,15 @@ This should be the header of patch that fixes :cve:`2015-8370` in GRUB2::
409 Upstream-Status: Backport [http://git.savannah.gnu.org/cgit/grub.git/commit/?id=451d80e52d851432e109771bb8febafca7a5f1f2] 409 Upstream-Status: Backport [http://git.savannah.gnu.org/cgit/grub.git/commit/?id=451d80e52d851432e109771bb8febafca7a5f1f2]
410 CVE: CVE-2015-8370 410 CVE: CVE-2015-8370
411 Signed-off-by: Joe Developer <joe.developer@example.com> 411 Signed-off-by: Joe Developer <joe.developer@example.com>
412
413Patch format
414============
415
416By default, patches created with ``git format-patch`` have a `Git` version signature at the end.
417To avoid having a `Git` signature at the end of generated or updated patches,
418you can use `Git` configuration settings::
419
420 git config --global format.signature ""
421
422.. note::
423 Patches generated or updated by ``devtool`` are created with no signature.