We welcome contributions to svgestor! Whether it's a bug fix, new feature, or improving documentation, your help is valuable. Here's how you can contribute:
Click the Fork button in the top right corner of the repository page.
This creates a copy of the repository under your GitHub account.
Clone your forked repository to your local machine: git clone https://github.com/your-username/svgestor.git
Create a new branch for your feature or bug fix: git checkout -b feature-or-bugfix-name
-Implement your feature or fix the bug. -Follow the coding style and structure of the project. -Add or update tests if applicable. -Run the tests to ensure everything works correctly: -npm test # Adjust if a different testing command is used
Stage your changes: git add .
Commit your changes with a descriptive message: git commit -m "Brief description of the changes"
Push the changes to your forked repository: git push origin feature-or-bugfix-name
-Go to the original repository on GitHub. -Click on Pull Requests > New Pull Request. -Select the branch you just pushed from your fork. -Add a title and description for your pull request. -Submit the pull request for review.
-Respond to feedback or suggestions from maintainers. -Make necessary updates and push them to your branch.