We're excited that you're interested in contributing to setup-masm! This document outlines the process for contributing to this project.
By participating in this project, you agree to abide by our Code of Conduct. Please read it before contributing.
-
Fork the Repository: Start by forking the repository to your GitHub account.
-
Clone the Fork: Clone your fork to your local machine.
git clone https://github.com/your-username/setup-masm.git -
Create a Branch: Create a new branch for your contribution.
git checkout -b feature/your-feature-name -
Make Changes: Make your changes or additions to the code.
-
Test Your Changes: Ensure that your changes don't break any existing functionality.
-
Commit Your Changes: Commit your changes with a clear and descriptive commit message.
git commit -m "Add feature: your feature description" -
Push to Your Fork: Push your changes to your fork on GitHub.
git push origin feature/your-feature-name -
Create a Pull Request: Go to the original setup-masm repository and create a pull request from your fork.
- Provide a clear title and description for your pull request.
- Include any relevant issue numbers in the description.
- Ensure your code follows the existing style of the project.
- Include tests if you're adding new functionality.
- Update documentation if necessary.
If you find a bug or have a suggestion for improvement:
- Check if the issue already exists in the Issues section.
- If not, create a new issue, providing as much relevant information as possible.
If you have any questions or need further clarification, feel free to open an issue for discussion.
Thank you for contributing to setup-masm!