From 08bc76bef7416c7aea18182c9569bb10154b1161 Mon Sep 17 00:00:00 2001 From: ferkans-amir Date: Fri, 24 Jul 2026 13:30:44 +0200 Subject: [PATCH 1/3] docs: fix Title Case section heading and fork clone URL placeholder in CONTRIBUTING.md --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 746332013..ff8dbc89c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,10 +6,10 @@ pull request workflow, lives in the documentation: **** (source: [`docs/contributing.md`](docs/contributing.md)) -## Quick start +## Quick Start ```bash -git clone https://github.com/opengeos/GeoLibre.git +git clone https://github.com//GeoLibre.git cd GeoLibre npm install npm run dev # web build at http://localhost:5173 From cc886ada0e28d01a9767621f5f7800b3705e06d8 Mon Sep 17 00:00:00 2001 From: giswqs Date: Fri, 24 Jul 2026 20:33:04 -0400 Subject: [PATCH 2/3] Address review feedback - Replace the `` clone placeholder with the shell-safe `YOUR_GITHUB_USERNAME`: angle brackets are redirection operators, so copy/pasting the Quick Start command failed in bash/zsh before `git clone` ran (CodeRabbit, Copilot). - Add a sentence above the block telling readers to fork first and substitute their GitHub username, so the placeholder is explicit (CodeRabbit). --- CONTRIBUTING.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ff8dbc89c..ed573c1c3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,8 +8,11 @@ pull request workflow, lives in the documentation: ## Quick Start +Fork the repository, then clone your fork — replace `YOUR_GITHUB_USERNAME` with +your GitHub username: + ```bash -git clone https://github.com//GeoLibre.git +git clone https://github.com/YOUR_GITHUB_USERNAME/GeoLibre.git cd GeoLibre npm install npm run dev # web build at http://localhost:5173 From 1ae06476886f607e476f3171a01cf56935029dbf Mon Sep 17 00:00:00 2001 From: giswqs Date: Fri, 24 Jul 2026 20:36:38 -0400 Subject: [PATCH 3/3] Address CodeRabbit review feedback - Align docs/contributing.md with CONTRIBUTING.md: the canonical guide still cloned opengeos/GeoLibre directly while the root file now tells contributors to clone their fork, so the two gave conflicting setup steps. Both now use the fork-based clone with the shell-safe YOUR_GITHUB_USERNAME placeholder. --- docs/contributing.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/contributing.md b/docs/contributing.md index efb24d6d4..94ba9e7a1 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -33,8 +33,11 @@ before you invest time in a pull request. ## Setup +Fork the repository, then clone your fork — replace `YOUR_GITHUB_USERNAME` with +your GitHub username: + ```bash -git clone https://github.com/opengeos/GeoLibre.git +git clone https://github.com/YOUR_GITHUB_USERNAME/GeoLibre.git cd GeoLibre npm install ```