summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorAntonin Godard <antonin.godard@bootlin.com>2024-12-23 15:33:06 +0100
committerSteve Sakoman <steve@sakoman.com>2025-01-09 06:25:36 -0800
commit1c0c8e4b90c599c96bcd81251d57f1c1f0244938 (patch)
tree308007613eb27ecbb70cf7809f2d0f83d0096177 /documentation
parent466e5def1b40900d075fcdca479f2978dbac2ea8 (diff)
downloadpoky-1c0c8e4b90c599c96bcd81251d57f1c1f0244938.tar.gz
contributor-guide/submit-changes.rst: suggest to remove the git signature
By default when sending patches Git adds the git version at the bottom of the patch, which is not necessary in most cases. Suggest to remove it when configuring Git when sending patches. Suggested-By: Jaekyu Lee <jaekyu.lee@lge.com> (From yocto-docs rev: 05455e916b3c94a73b358ac4f4189cc66bec35f2) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> (cherry picked from commit d3465691231f10466703198a831a681803ffdfad) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/contributor-guide/submit-changes.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/documentation/contributor-guide/submit-changes.rst b/documentation/contributor-guide/submit-changes.rst
index 7dc8da7aeb..85ca987df2 100644
--- a/documentation/contributor-guide/submit-changes.rst
+++ b/documentation/contributor-guide/submit-changes.rst
@@ -65,6 +65,13 @@ use to identify your commits::
65 git config --global user.name "Ada Lovelace" 65 git config --global user.name "Ada Lovelace"
66 git config --global user.email "ada.lovelace@gmail.com" 66 git config --global user.email "ada.lovelace@gmail.com"
67 67
68By default, Git adds a signature line at the end of patches containing the Git
69version. We suggest to remove it as it doesn't add useful information.
70
71Remove it with the following command::
72
73 git config --global format.signature ""
74
68Clone the Git repository for the component to modify 75Clone the Git repository for the component to modify
69---------------------------------------------------- 76----------------------------------------------------
70 77