Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.81 KB

CONTRIBUTING.md

File metadata and controls

33 lines (21 loc) · 1.81 KB

Contributing

You can contribute to Quarto in many ways:

  • By opening issues to provide feedback and share ideas.
  • By submitting Pull Request (PR) to fix opened issues
  • By submitting Pull Request (PR) to suggest new features (it is considered good practice to open an issue for discussion before working on a pull request for a new feature).

Please be mindful of our code of conduct as you interact with other community members.

Pull Requests

Pull requests are very welcome! Here's how to contribute via PR:

  1. Fork the repository, clone it locally, and make your changes in a new branch specific to the PR. For example:

    # clone your fork
    $ git clone https://github.com/<username>/quarto-cli
    
    # configure for your platform (./configure.sh on mac/linux, or ./configure.cmd on windows powershell)
    $ cd quarto-cli
    $ ./configure.sh
    
    # checkout a new branch
    $ git checkout -b feature/newthing
  2. For significant changes (e.g more than small bug fixes), ensure that you have signed the individual or corporate contributor agreement as appropriate. You can send the signed copy to jj@rstudio.com{.email}.

  3. Submit the pull request. It is ok to submit as draft in your are still working on it but would like some feedback from us. It always good to share in the open that you are working on it.

We'll try to be as responsive as possible in reviewing and accepting pull requests.