diff options
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/contributor-guide/submit-changes.rst | 7 |
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 | ||
68 | By default, Git adds a signature line at the end of patches containing the Git | ||
69 | version. We suggest to remove it as it doesn't add useful information. | ||
70 | |||
71 | Remove it with the following command:: | ||
72 | |||
73 | git config --global format.signature "" | ||
74 | |||
68 | Clone the Git repository for the component to modify | 75 | Clone the Git repository for the component to modify |
69 | ---------------------------------------------------- | 76 | ---------------------------------------------------- |
70 | 77 | ||