Skip to content

Commit

Permalink
Merge pull request #1676 from neeru24/patch-9
Browse files Browse the repository at this point in the history
Improvements to Contributing Section
  • Loading branch information
PriyaGhosal authored Oct 28, 2024
2 parents 2268d1b + 41254e7 commit 58e4eeb
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,18 +174,32 @@ All responses are in JSON format. Ensure to handle errors appropriately.
Join the list. **We are waiting** <br/>
Here's how you can contribute to the repository:

1. Fork this Repository 🍴
2. Clone to your local machine 🧩 using:
git clone https://github.com/Your-Username/BuddyTrail.git
3. Create a new branch:
git branch -c "Feature-Name"
4. Navigate to the branch:
git checkout Feature-Name
5. Add changes and Commit:
git commit -m "Add Changes message"
6. Push to the branch:
git push origin Feature-Name
7. Submit Pull Request
1. **Fork this Repository** 🍴
2. **Clone to your local machine** 🧩 using:
```bash
git clone https://github.com/Your-Username/BuddyTrail.git
```
3. **Create a new branch**:
```bash
git branch -c "Feature-Name"
```

4. **Navigate to the branch**:
```bash
git checkout Feature-Name
```

5. **Add changes and Commit**:
```bash
git commit -m "Add Changes message"
```

6. **Push to the branch**:
```bash
git push origin Feature-Name
```

7. **Submit Pull Request**

We welcome all contributions to improve **BuddyTrail**! If you would like to contribute, please follow the [Contributing.md](./Contributing.md) for more details on how to get started.

Expand Down

0 comments on commit 58e4eeb

Please sign in to comment.