Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Create CONTRIBUTING.md
  • Loading branch information
Pavith19 authored Aug 9, 2024
commit 1871ccd42301ba07fa08a38e0cc86f7ebaa4c490
59 changes: 59 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Contribution Guidelines

## Table of Contents

1. [How to Contribute](#how-to-contribute)
2. [Pull Request Guidelines](#pull-request-guidelines)
3. [Issues](#issues)


## How to Contribute

1. **Fork the Repository:**
- Click the "Fork" button on the top right of this repository.

2. **Clone your Fork:**
- Clone the repository to your local machine:
```bash
git clone https://github.com/Pavith19/Car-Rental-Website.git
```

3. **Create a New Branch:**
- Create a new branch for your feature or bug fix:
```bash
git checkout -b feature/your-feature
```

4. **Make Changes:**
- Implement your changes and ensure they work as expected.

5. **Commit Changes:**
- Commit your changes with a descriptive commit message:
```bash
git commit -m "Add your descriptive commit message here"
```

6. **Push Changes:**
- Push your changes to your forked repository.
```bash
git push origin feature/your-feature
```

7. **Open a Pull Request:**
- Open a pull request on the original repository.

## Pull Request Guidelines

- Provide a descriptive title and explanation of your changes.
- Follow the project's coding standards.
- Include relevant tests for your changes.
- Update the documentation if needed.
- Ensure your branch is up-to-date with the main branch before submitting the pull request.

## Issues

- Open an issue for bug reports, feature requests, or general feedback.
- Follow the issue template for faster resolution.

Thank you for contributing to the Project!