From bd8f2ed8a5ea81867ff3d6476e66e94b18aeb29c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Fri, 6 Mar 2026 07:30:10 +0100 Subject: [PATCH] Fix missing 'git' prefix in GitGuide.md example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Øyvind Harboe --- docs/contrib/GitGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contrib/GitGuide.md b/docs/contrib/GitGuide.md index c9ad8cfdc94..da22ff87d33 100644 --- a/docs/contrib/GitGuide.md +++ b/docs/contrib/GitGuide.md @@ -31,7 +31,7 @@ feature branch for making your changes. For example: git checkout master && git branch shiny-new-feature git checkout shiny-new-feature # Or equivalently, -git checkout master && checkout -b shiny-new-feature +git checkout master && git checkout -b shiny-new-feature ``` This changes your working directory to the shiny-new-feature branch. Keep any