Skip to content
Merged

g #13

Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ We welcome contributions to improve our documentation! Here's how you can contri
- Select where you want to fork the repository (your personal account or an organization)
2. Clone your forked repository:

```
```bash
git clone https://github.com/YOUR-USERNAME/docs.git
cd docs
```

3. Create a new branch for your changes:

```
```bash
git checkout -b your-feature-branch
```

4. Make your changes to the documentation
5. Commit your changes:

```
```bash
git add .
git commit -m "Description of your changes"
```

6. Push your changes to your fork:

```
```bash
git push origin your-feature-branch
```

Expand All @@ -54,13 +54,13 @@ After forking and cloning the repository:

1. Install dependencies:

```
```bash
npm install
```

2. Start the development server:

```
```bash
npm start
```

Expand Down