From 03d4187b16fbbf335389a35d0ed1d2e974c76502 Mon Sep 17 00:00:00 2001 From: ALIPHATIC Date: Sat, 12 Oct 2024 14:54:41 +0100 Subject: [PATCH 1/2] Created staging branch & UpdatedREADME.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index fca1220..6b3d088 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,12 @@ To get started with contributing to the CLENT Africa website development, follow cd web-dev ``` +2. **Switch to staging branch** + ```bash + git checkout staging + cd web-dev + ``` + 2. **Install dependencies:** ```bash npm install From 37663fd97c74abf13c11aba94bed2992cd446461 Mon Sep 17 00:00:00 2001 From: ALIPHATIC Date: Sat, 12 Oct 2024 15:01:04 +0100 Subject: [PATCH 2/2] Refactor README.md and update contributing instructions --- README.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b3d088..51532ce 100644 --- a/README.md +++ b/README.md @@ -32,12 +32,6 @@ To get started with contributing to the CLENT Africa website development, follow cd web-dev ``` -2. **Switch to staging branch** - ```bash - git checkout staging - cd web-dev - ``` - 2. **Install dependencies:** ```bash npm install @@ -79,20 +73,24 @@ We welcome contributions from the community! To contribute, please follow these cd web-dev ``` -3. **Create a new branch:** +3. **Switch to staging branch** + ```bash + git checkout staging + ``` +4. **Create a new feature branch:** ```bash git checkout -b feature-name ``` -4. **Make your changes:** +5. **Make your changes:** Implement your feature or fix a bug. -5. **Commit your changes:** +6. **Commit your changes:** ```bash git commit -m "Description of your changes" ``` -6. **Push to your fork:** +7. **Push to your fork:** ```bash git push origin feature-name ```