From 2d1a04371a8e61f9d5ba8b028f41fcbcec017b9c Mon Sep 17 00:00:00 2001 From: John DeNisco Date: Thu, 26 Jul 2018 16:21:31 -0400 Subject: Fix .gitignore so docs/Makefile is not ignored. Add README and Makefile. Fis gitreview. Change-Id: I3d664d9c881ce127a09b9d68c1181a7098a39074 Signed-off-by: John DeNisco --- docs/gettingstarted/writingdocs/gitreview.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'docs/gettingstarted') 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 - git commit -s - git review + $ git status + $ git add + $ 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 - git commit --amend - git review + $ git status + $ git add + $ git commit --amend + $ git review -- cgit 1.2.3-korg