From: Emil Velikov Date: Wed, 7 Nov 2018 16:02:58 +0000 (+0000) Subject: docs/submittingpatches.html: correctly handle the

tag X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4ae749acf1537d63585e056210a03f89466f61b2;p=mesa.git docs/submittingpatches.html: correctly handle the

tag As pointed out by the w3c validator. Signed-off-by: Emil Velikov Reviewed-by: Juan A. Suarez --- diff --git a/docs/submittingpatches.html b/docs/submittingpatches.html index e5350bdb2cf..b84f01c3b37 100644 --- a/docs/submittingpatches.html +++ b/docs/submittingpatches.html @@ -156,9 +156,11 @@ As mentioned at the begining, patches should be bisectable. A good way to test this is to make use of the `git rebase` command, to run your tests on each commit. Assuming your branch is based off origin/master, you can run: +

 $ git rebase --interactive --exec "make check" origin/master
 
+

replacing "make check" with whatever other test you want to run.