Whether you are a seasoned developer or a rookie, welcome to IronCalc!
🎉 We appreciate your interest in contributing to our project.
Before starting any work it is best if you get in touch to make sure your work is relevant.
Please be patient, I am only one and this is a side project.
If are comfortable working with GitHub and Git, the following steps should be straightforward. For more general information visit GitHub Docs and Git Documentation.
-
Fork the repository Start by forking the repository to your own GitHub account. You can do this by clicking the "Fork" button on the top right of the repository page.
-
Clone the original repository Clone the original repository to your local machine:
git clone https://github.com/ironcalc/IronCalc.git cd IronCalc
-
Add your fork as a remote Add your forked repository as a remote named fork:
git remote add fork https://github.com/<your-username>/IronCalc.git
-
Create a new branch Always create a new branch for your changes to keep your work isolated:
git checkout -b your-feature-name
-
Make changes Implement your changes, improvements, or bug fixes. Make sure to follow any coding style or project-specific guidelines.
-
Commit your changes Write clear and concise commit messages:
git add . git commit -m "Brief description of your changes"
-
Push to your fork Push your branch to your forked repository:
git push fork your-feature-name
-
Create a Pull Request (PR) Follow the steps on the terminal or go to the orig IronCalc repository, and click on "New Pull Request." Ensure your PR has a clear title and description explaining the purpose of your changes.
Always start from the main branch in a clean state. git pull
will generally get the lastest changes form the original repo.
You should make sure that your changes are properly tested.
Feel free to reach out if you have questions or need help. Via GitHub, email, our discord server or bluesky.
- Open an issue to report a bug or discuss a feature before implementing it.
- Engage with the community to share ideas or seek guidance.
Note that not all contributors need to be coding. To contribute testing, bug reports, typos, ideas of all kinds, you can just send us an email.
Thank you for your contributions! 💪 Together, we can make IronCalc even better.