diff options
Diffstat (limited to 'docs/gettingstarted/writingdocs/gitreview.rst')
-rw-r--r-- | docs/gettingstarted/writingdocs/gitreview.rst | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/gettingstarted/writingdocs/gitreview.rst b/docs/gettingstarted/writingdocs/gitreview.rst index 63916e1d752..308e313460b 100644 --- a/docs/gettingstarted/writingdocs/gitreview.rst +++ b/docs/gettingstarted/writingdocs/gitreview.rst @@ -39,24 +39,24 @@ To get a new patch reviewed use the following: .. code-block:: console - git status - git add <filename> - git commit -s - git review + $ git status + $ git add <filename> + $ git commit -s + $ git review If the patch is a draft use the following: .. note:: - git review -D + $ git review -D To get back to the master: .. code-block:: console - git reset --hard origin/master - git checkout master + $ git reset --hard origin/master + $ git checkout master Existing patch -------------- @@ -66,7 +66,7 @@ To modify an existing patch: .. code-block:: console - git status - git add <filename> - git commit --amend - git review + $ git status + $ git add <filename> + $ git commit --amend + $ git review |