diff options
-rw-r--r-- | documentation/contributor-guide/submit-changes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/documentation/contributor-guide/submit-changes.rst b/documentation/contributor-guide/submit-changes.rst index 31674d313d..677885e3cf 100644 --- a/documentation/contributor-guide/submit-changes.rst +++ b/documentation/contributor-guide/submit-changes.rst | |||
@@ -101,6 +101,11 @@ corresponding to each of the patches you will eventually submit. | |||
101 | See `further guidance <https://www.kernel.org/doc/html/latest/process/submitting-patches.html#separate-your-changes>`__ | 101 | See `further guidance <https://www.kernel.org/doc/html/latest/process/submitting-patches.html#separate-your-changes>`__ |
102 | in the Linux kernel documentation if needed. | 102 | in the Linux kernel documentation if needed. |
103 | 103 | ||
104 | For example, when you intend to add multiple new recipes, each recipe | ||
105 | should be added in a separate commit. For upgrades to existing recipes, | ||
106 | the previous version should usually be deleted as part of the same commit | ||
107 | to add the upgraded version. | ||
108 | |||
104 | #. *Stage Your Changes:* Stage your changes by using the ``git add`` | 109 | #. *Stage Your Changes:* Stage your changes by using the ``git add`` |
105 | command on each file you modified. If you want to stage all the | 110 | command on each file you modified. If you want to stage all the |
106 | files you modified, you can even use the ``git add -A`` command. | 111 | files you modified, you can even use the ``git add -A`` command. |