Skip to content

Commit 38316b3

Browse files
Update repository name in contributing guidelines
-standardized repo name to recode-website throughout -added actual upstream URL instead of placeholder -fixed formatting section numbering
1 parent c2d8a89 commit 38316b3

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

community/contributing-guidelines.md

Lines changed: 8 additions & 9 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,17 +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>
110-
```
109+
git remote add upstream https://github.com/recodehive/recode-website.git ```
111110
112111
Verify the remotes:
113112
@@ -165,19 +164,19 @@ We welcome contributions! Follow these steps to get started.
165164

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

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

170169
```bash
171170
npm run lint:fix
172171
```
173172

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

176175
```bash
177176
npm run format
178177
```
179178

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

182181
```bash
183182
npm run build

0 commit comments

Comments
 (0)