Skip to content

Commit 9b30349

Browse files
authored
Merge pull request #1050 from killjoycircuit/docs-setup-instruction-fixed
Update commands in contributing guidelines
2 parents 6f9b1d0 + 689d4f1 commit 9b30349

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

community/contributing-guidelines.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ sidebar_position: 2
2121
1. **Clone the repository:**
2222

2323
```bash
24-
git clone https://github.com/your-username/recodehive-website.git
24+
git clone https://github.com/your-username/recode-website.git
2525
```
2626

2727
2. **Navigate to the project directory:**
2828

2929
```bash
30-
cd recodehive-website
30+
cd recode-website
3131
```
3232

3333
3. **Install dependencies:**
@@ -97,16 +97,16 @@ We welcome contributions! Follow these steps to get started.
9797
2. **Clone Your Fork Locally**
9898

9999
```bash
100-
git clone https://github.com/your-username/recodehive-website.git
101-
cd recodehive-website
100+
git clone https://github.com/your-username/recode-website.git
101+
cd recode-website
102102
```
103103

104104
3. **Add the Original Repository as Upstream**
105105

106106
This allows you to fetch changes from the main repository to keep your fork up to date.
107107

108108
```bash
109-
git remote add upstream <repo-url>
109+
git remote add upstream https://github.com/recodehive/recode-website.git
110110
```
111111

112112
Verify the remotes:
@@ -165,19 +165,19 @@ We welcome contributions! Follow these steps to get started.
165165

166166
To ensure consistent code style and catch errors before committing, please follow these steps:
167167

168-
2. **Automatically fix linting issues where possible**:
168+
1. **Automatically fix linting issues where possible**:
169169

170170
```bash
171171
npm run lint:fix
172172
```
173173

174-
3. **Format code according to project conventions**:
174+
2. **Format code according to project conventions**:
175175

176176
```bash
177177
npm run format
178178
```
179179

180-
4. **Build the project to verify everything compiles correctly**:
180+
3. **Build the project to verify everything compiles correctly**:
181181

182182
```bash
183183
npm run build

0 commit comments

Comments
 (0)