diff options
author | John DeNisco <jdenisco@cisco.com> | 2020-07-06 12:27:58 -0400 |
---|---|---|
committer | John DeNisco <jdenisco@cisco.com> | 2020-07-06 12:30:31 -0400 |
commit | 742000af2043ab2f9b18f5a062491fe1ab66573e (patch) | |
tree | 6fb5d05a8926e6b833921a2b2492b2d37298c5ff /docs/gettingstarted/developers/gitreview.rst | |
parent | 6a9bd81886772b5ffeb367736fb83bf95f37435f (diff) |
docs: Reflect the fact that the DPDK is now a plugin
Type: Improvement
Signed-off-by: John DeNisco <jdenisco@cisco.com>
Change-Id: Ic1253f601ee515392902a21b92e1dfd3962cc0a4
Diffstat (limited to 'docs/gettingstarted/developers/gitreview.rst')
-rw-r--r-- | docs/gettingstarted/developers/gitreview.rst | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/docs/gettingstarted/developers/gitreview.rst b/docs/gettingstarted/developers/gitreview.rst index a962d25e4fd..3f865c159a2 100644 --- a/docs/gettingstarted/developers/gitreview.rst +++ b/docs/gettingstarted/developers/gitreview.rst @@ -83,7 +83,22 @@ For example for a document with only patches you should add the tag **docs:**. .. code-block:: console $ git add <filename> - $ git commit -s -m "<*TAG*>: <*COMMIT_MESSAGE*>" + $ git commit -s + +The commit comment should have something like the following comment: + +.. code-block:: console + + docs: A brief description of the commit + + Type: Improvement (The type of commit this could be: Improvement, Fix or Feature) + + A detailed description of the commit could go here. + +Push the patch for review. + +.. code-block:: console + $ git review If you are creating a draft, meaning you do not want your changes reviewed yet, do the following: |