We’re excited that you’re interested in contributing to Date Utils! This guide will help you get started.
If you find a bug, have a question, or want to suggest a new feature:
- Search Existing Issues: Check the Issues tab to see if your concern has already been addressed.
- Create a New Issue: If not, open a new issue. Please provide:
- A clear and descriptive title.
- Detailed steps to reproduce the issue (if applicable).
- Suggestions or ideas (if applicable).
Please, take a look at Contributing to a project - GitHub Docs page for more in-detail informations.
- Go to the repository page.
- Click the Fork button.
- Clone your fork to your local machine:
git clone https://github.com/your-username/date-utils.git
To make changes:
- Navigate to your cloned repository:
cd date-utils
- Create and switch to a new branch:
git checkout -b feature/your-feature-name
# or
git checkout -b fix/your-fix-name
# or
git checkout -b doc/your-doc-improvements
Keep changes relevant to your branch’s purpose.
- Stage your changes:
git add .
- Write a meaningful commit message:
git commit -m "Add feature/bug-fix description"
Push your branch to your forked repository:
git push origin feature/your-feature-name
- Navigate to your forked repository on GitHub.
- Click the Pull Request button.
- Select the base repository and compare across forks.
- Add a detailed description explaining your changes.
By participating in this project, you agree to follow our Code of Conduct.
Pull requests will be reviewed by maintainers. Feedback may be provided; be prepared to make changes if requested. Once approved, your contribution will be merged into the main branch.
Thank you for helping improve Date Utils! 🎉