-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
120 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
# Contributing to [603] 🚀 | ||
|
||
Thank you for considering contributing to [603]! We appreciate your interest in helping make this project better. | ||
|
||
## Table of Contents | ||
|
||
- [Contributing to \[603\]](#contributing-to-WorkVed-) | ||
- [Table of Contents](#table-of-contents) | ||
- [Code of Conduct](#code-of-conduct) | ||
- [How Can I Contribute?](#how-can-i-contribute) | ||
- [Reporting Bugs](#reporting-bugs-) | ||
- [Requesting Features](#requesting-features-) | ||
- [Submitting Changes](#submitting-changes-) | ||
- [Pull Request Guidelines](#pull-request-guidelines-) | ||
- [Style Guide](#style-guide-) | ||
- [License](#license-) | ||
|
||
## Code of Conduct | ||
|
||
This project and its community adhere to the [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report any unacceptable behavior to [project owner's email]. | ||
|
||
## How Can I Contribute? 🌟 | ||
|
||
### Reporting Bugs 🐛 | ||
|
||
If you come across a bug or an issue with [WorkVed], please take the following steps: | ||
|
||
1. **Search** the [issue tracker](https://github.com/Mayank77maruti/603WorkVed/issues) to check if the issue has already been reported. If it has, feel free to add any additional information or subscribe to the existing issue. | ||
|
||
2. **Create a New Issue** if the issue hasn't been reported yet, with a descriptive title and a clear description of the problem. Include any relevant details such as operating system, browser version, and steps to reproduce the issue. | ||
|
||
### Requesting Features ✨ | ||
|
||
If you have an idea for a new feature or improvement, please follow these steps: | ||
|
||
1. **Search** the [issue tracker](https://github.com/Mayank77maruti/603WorkVed/issues) to check if the feature request already exists. If it does, you can comment on the existing request to provide more information or express your interest. | ||
|
||
2. **Create a New Issue** if the feature request doesn't exist, with a clear and concise title and a detailed description of the feature or enhancement you're proposing. Explain why it's valuable and how it aligns with the project's goals. | ||
|
||
### Submitting Changes 🛠️ | ||
|
||
If you want to contribute code changes, follow these steps: | ||
|
||
1. **Fork the repository** to your own GitHub account. | ||
|
||
2. **Clone your forked repository** to your local machine. | ||
```bash | ||
git clone https://github.com/Mayank77maruti/603WorkVed.git | ||
``` | ||
|
||
3. **Create a new branch** for your changes. | ||
```bash | ||
git checkout -b feature/your-feature-name | ||
``` | ||
|
||
4. **Make your changes**, following the [style guide](#style-guide) and ensuring that your code adheres to the project's coding standards. | ||
|
||
5. **Commit your changes** with a descriptive commit message. | ||
```bash | ||
git commit -m "Add new feature: your feature name" | ||
``` | ||
|
||
6. **Push your changes** to your forked repository on GitHub. | ||
```bash | ||
git push origin feature/your-feature-name | ||
``` | ||
|
||
7. **Open a pull request (PR)** on the [original repository](https://github.com/Mayank77maruti/603WorkVed) and provide a detailed description of your changes. | ||
|
||
### Alternatively contribute using GitHub Desktop 🖥️ | ||
|
||
1. **Open GitHub Desktop**: | ||
Launch GitHub Desktop and log in to your GitHub account if you haven't already. | ||
2. **Clone the Repository**: | ||
- If you haven't cloned the repository yet, you can do so by clicking on the "File" menu and selecting "Clone Repository." | ||
- Choose the repository from the list of repositories on GitHub and clone it to your local machine. | ||
|
||
3. **Switch to the Correct Branch**: | ||
- Ensure you are on the branch that you want to submit a pull request for. | ||
- If you need to switch branches, you can do so by clicking on the "Current Branch" dropdown menu and selecting the desired branch. | ||
|
||
4. **Make Changes**: | ||
Make your changes to the code or files in the repository using your preferred code editor. | ||
|
||
5. **Commit Changes**: | ||
- In GitHub Desktop, you'll see a list of the files you've changed. Check the box next to each file you want to include in the commit. | ||
- Enter a summary and description for your changes in the "Summary" and "Description" fields, respectively. Click the "Commit to <branch-name>" button to commit your changes to the local branch. | ||
|
||
6. **Push Changes to GitHub**: | ||
After committing your changes, click the "Push origin" button in the top right corner of GitHub Desktop to push your changes to your forked repository on GitHub. | ||
|
||
7. **Create a Pull Request**: | ||
- Go to the GitHub website and navigate to your fork of the repository. | ||
- You should see a button to "Compare & pull request" between your fork and the original repository. Click on it. | ||
|
||
8. **Review and Submit**: | ||
- On the pull request page, review your changes and add any additional information, such as a title and description, that you want to include with your pull request. | ||
- Once you're satisfied, click the "Create pull request" button to submit your pull request. | ||
9. **Wait for Review**: | ||
Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the repository. | ||
### Pull Request Guidelines 📋 | ||
To ensure a smooth review process, please follow these guidelines when submitting a pull request: | ||
- Your code should be well-documented and include clear comments where necessary. | ||
- Run any relevant tests to ensure that your changes don't introduce new issues. | ||
- Ensure your code follows the project's coding standards and style guide (see [Style Guide](#style-guide)). | ||
- Keep your pull request focused on a single feature or bug fix. | ||
- Provide a clear and concise title and description for your pull request. | ||
## Style Guide 📚 | ||
[WorkVed] follows a specific coding style and structure. Please refer to the [style guide](STYLE_GUIDE.md) for details on code formatting, naming conventions, and other coding standards. | ||
## License 📜 | ||
By contributing to [603 ], you agree that your contributions will be licensed under the project's [LICENSE](LICENSE.md). |