-
Notifications
You must be signed in to change notification settings - Fork 0
CONTRIBUTING.md
Thank you for considering contributing to the YouTube Audio Processor project! We welcome contributions from the community. This guide will help you get started with contributing to the project.
To contribute to the project, start by forking the repository:
- Navigate to the YouTube Audio Processor GitHub page.
- Click the "Fork" button at the top-right of the page.
Clone your forked repository to your local machine:
git clone https://github.com/YOUR_USERNAME/youtube_audio_processor.git
Replace YOUR_USERNAME
with your GitHub username.
Create a new branch for your changes:
git checkout -b feature/your-feature
Replace feature/your-feature
with a descriptive name for your branch.
Make your changes in the new branch. Be sure to follow the project's coding style and guidelines.
Ensure your changes work correctly and do not break existing functionality. Run the application and any tests to verify your changes.
Add and commit your changes:
git add .
git commit -m "Add a descriptive commit message"
Push your changes to your forked repository:
git push origin feature/your-feature
- Go to the original YouTube Audio Processor repository.
- Click on the "Pull Requests" tab.
- Click "New Pull Request."
- Select the branch you pushed your changes to and create a pull request.
- Provide a clear description of the changes and submit the pull request.
Please adhere to our Code of Conduct while contributing.
If you find a bug or have a feature request, please open an issue in the Issues section of the repository.
We appreciate your contributions to the project. Your efforts help improve the software for everyone!