From 2519ab61cdf2d23824c3a597ea3592be05d3a126 Mon Sep 17 00:00:00 2001
From: Mohammad Akhlaghi
Date: Fri, 3 Jul 2026 15:08:54 +0200
Subject: index.html: corrected checkout command when submitting fixes
Until now, the part of 'index.html' that instructed how to submit
fixes incorrectly asked users to use 'git branch -b', but this should
have been 'git checkout -b'. Also, we didn't have a step to make sure
the local 'maneage' branch is up to date.
With this commit, both issues have been addressed.
This problem was reported by Faezeh Bidjarchian.
---
index.html | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/index.html b/index.html
index 82566e5..bf6471b 100644
--- a/index.html
+++ b/index.html
@@ -146,9 +146,10 @@ git checkout -b main
- - Go to the
maneage branch and create a new branch from there like below:
- git checkout maneage
-git branch -b my-fix
+ - Go to the
maneage branch, make sure it is up to date, and create a new branch from there like below:
+ git checkout maneage
+git pull origin-maneage
+git checkout -b my-fix
- Commit your fix over this new branch (see these commit message guidelines).
- Build a new project on your favorite Git repository (GitLab, BitBucket, or GitHub for example) and assign it to a new Git remote in your project.
--
cgit v1.2.1