Skip to content

Commit fe41969

Browse files
committed
change CONTRIBUTING
1 parent 9cfc65d commit fe41969

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you're unsure where to begin:
1010
- Check out our [open issues](https://github.com/louis-heraut/EXstat/issues).
1111
- Feel free to open a new issue to ask questions or suggest ideas.
1212

13-
### ✏️ Want to Work on Something?
13+
#### Want to Work on Something?
1414
If you plan to tackle an issue or develop something new :
1515
- Open or comment on an issue to let us know you're working on it. This helps avoid duplication and promotes collaboration !
1616

@@ -19,31 +19,31 @@ If you plan to tackle an issue or develop something new :
1919

2020
Here’s a step-by-step guide to contributing :
2121

22-
### 1. **Fork the Repository**
22+
#### 1. **Fork the Repository**
2323
Click the **Fork** button at the top right of the [EXstat GitHub page](https://github.com/louis-heraut/EXstat) to create a copy of the repo under your GitHub account.
2424

25-
### 2. **Clone Your Fork**
25+
#### 2. **Clone Your Fork**
2626
Clone your fork to your local machine:
2727

2828
```bash
2929
git clone https://github.com/your-username/EXstat.git
3030
cd EXstat
3131
```
3232

33-
### 3. **Create a New Branch**
33+
#### 3. **Create a New Branch**
3434
It's best to work in a dedicated branch for each feature or fix :
3535

3636
```bash
3737
git checkout -b your-feature-name
3838
```
3939

40-
### 4. **Make Your Changes**
40+
#### 4. **Make Your Changes**
4141
Edit the code, documentation, or tests. Be sure your changes :
4242
- Follow the project’s code style
4343
- Don’t break existing functionality
4444
- Include comments or documentation if needed
4545

46-
### 5. **Commit and Push**
46+
#### 5. **Commit and Push**
4747
After testing your changes locally :
4848

4949
```bash
@@ -52,7 +52,7 @@ git commit -m "Clear description of what you did"
5252
git push origin your-feature-name
5353
```
5454

55-
### 6. **Open a Pull Request**
55+
#### 6. **Open a Pull Request**
5656
- Go to your fork on GitHub and click **“Compare & Pull Request.”**
5757
- Fill out the PR template with:
5858
- A description of what you changed and why
@@ -67,11 +67,11 @@ Your PR may receive comments. Please respond, make updates, and re-push your bra
6767

6868
To sync your fork with the main repo:
6969

70-
### Option 1: Using GitHub's Web Interface
70+
#### Option 1: Using GitHub's Web Interface
7171
- Navigate to your fork
7272
- Click **"Sync fork"** (in the top bar)
7373

74-
### Option 2: Using Git (advanced)
74+
#### Option 2: Using Git (advanced)
7575

7676
```bash
7777
git remote add upstream https://github.com/louis-heraut/EXstat.git

0 commit comments

Comments
 (0)