Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements to Contributing Section #1676

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all 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
38 changes: 26 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,18 +160,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
Loading