Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 1.47 KB

File metadata and controls

45 lines (34 loc) · 1.47 KB

How to Contribute

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:

1. Fork the Repository

Click the Fork button in the top right corner of the repository page.
This creates a copy of the repository under your GitHub account.

2. Clone Your Fork

Clone your forked repository to your local machine: git clone https://github.com/your-username/svgestor.git

3. Create a new Branch

Create a new branch for your feature or bug fix: git checkout -b feature-or-bugfix-name

4. Make your Changes

-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

5. Commit your Changes

Stage your changes: git add .

Commit your changes with a descriptive message: git commit -m "Brief description of the changes"

6. Push to your fork

Push the changes to your forked repository: git push origin feature-or-bugfix-name

7. Submit a pull request

-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.

8. Engage in review

-Respond to feedback or suggestions from maintainers. -Make necessary updates and push them to your branch.