From 40b29f6b3ac253ca4261e0c2eb063302137b6b09 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Wed, 26 Apr 2023 15:08:35 +0200 Subject: [PATCH] docs: typo in git pull command Signed-off-by: Daniel Kesselberg --- developer_manual/getting_started/development_process.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_manual/getting_started/development_process.rst b/developer_manual/getting_started/development_process.rst index c76d74ef0..9420613a7 100644 --- a/developer_manual/getting_started/development_process.rst +++ b/developer_manual/getting_started/development_process.rst @@ -23,7 +23,7 @@ Any changes made to the source code go into the default branch of a repository t # Switch to the default branch and update it git checkout main - git pull origin/main + git pull origin main # Create the new feature branch git checkout -b feature/foo-bar @@ -56,7 +56,7 @@ More complex changes may require the developer to do the backport manually. This # Switch to the target branch and update it git checkout stable25 - git pull origin/stable25 + git pull origin stable25 # Create the new backport branch git checkout -b fix/foo-stable25