Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.01 KB

CONTRIBUTING.md

File metadata and controls

39 lines (32 loc) · 1.01 KB

We welcome contributions to the debricked VS Code extension project! To contribute, follow these steps:

Fork the Repository

  1. Fork the repository on GitHub.
  2. Clone your fork locally:
    git clone https://github.com/your-username/VS-Code-extension.git
    cd VS-Code-extension

Create a Branch

  1. Create a new branch for your feature or bug fix:
    git checkout -b my-feature-branch

Make Changes

  1. Make your changes in the codebase.
  2. Run tests to ensure everything works:
    npm run test

Commit and Push

  1. Commit your changes with a descriptive message:

    git commit -m "Add new feature X"
  2. Push your branch to GitHub:

    git push origin my-feature-branch

Create a Pull Request

  1. Create a pull request from your branch to the main branch in the original repository.
  2. Ensure all checks pass and your code is reviewed.

For more details, refer to our Contribution Guidelines.