Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 1.49 KB

CONTRIBUTING.md

File metadata and controls

47 lines (27 loc) · 1.49 KB

How to Contribute

Setup

  1. Fork this repository

  2. Clone the repository to your local system

$ git clone [email protected]:[YOUR_USER_NAME]/vscode.git

// OR

$ git clone https://github.com/[YOUR_USER_NAME]/vscode.git
  1. Navigate into the cloned repository and open VSCode
$ cd vscode/
$ code .
  1. Create a new git branch
$ git checkout -b my-descriptive-branch-name
  1. Make changes to the files in your local repository

  2. Test your work using the built-in VSCode debugger, which can be accessed from the Activity Bar or the Run > Start Debugging menu

  3. Push your work to a remote branch on your fork

  4. Issue a pull request against the main branch of the fauna/vscode repo

Pull Request Guidelines

When issuing a PR, please do the following to help us expedite merging your work:

  • IMPORTANT: Ensure maintainers can make changes to your PR

  • Add a description to your PR

  • Update the README.md file to describe your new functionality