Thank you for considering contributing to the Dictionary API Client project! We appreciate your time and effort in helping us improve this project. Please follow the guidelines below to ensure a smooth contribution process.
- Go to the repository page.
- Click the "Fork" button in the top right corner of the page.
- This will create a copy of the repository in your GitHub account.
- Clone the forked repository to your local machine:
git clone https://github.com/your-username/dictionary-api-client cd dictionary-api-client
- Create a new branch for your changes:
git checkout -b your-branch-name
- Make the necessary changes to the codebase.
- Stage the changes:
git add .
- Commit the changes with a descriptive message:
git commit -m "Description of the changes"
- Push the changes to your forked repository:
git push origin your-branch-name
- Go to the original repository page.
- Click the "New Pull Request" button.
- Select the branch you created and compare it with the main branch.
- Provide a descriptive title and detailed description of your changes.
- Click "Create Pull Request" to submit your contribution.
- Follow the existing code style and conventions.
- Write clear and concise commit messages.
- Ensure your code is well-documented and includes comments where necessary.
- Write tests for any new features or bug fixes.
- Run the existing tests to ensure your changes do not break anything.
- All pull requests will be reviewed by the project maintainers.
- Ensure your code passes all tests before submitting a pull request.
- Be responsive to feedback and make any necessary changes requested by the reviewers.
Thank you for contributing to the Dictionary API Client project!