Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.01 KB

CONTRIBUTING.md

File metadata and controls

42 lines (27 loc) · 1.01 KB

Set up dev environment

  1. Install nix

  2. Fork and clone the repository

gh repo fork --clone --remote ibis-project/ibis-substrait
  1. Set up public ibis-substrait Cachix cache to pull pre-built dependencies:
nix-shell -p cachix --run 'cachix use ibis-substrait'
  1. Run nix-shell in the checkout directory
cd ibis-substrait
nix-shell

Writing commit messages

ibis-substrait follows the Conventional Commits structure. In brief, the commit summary should look like:

fix(types): make all floats doubles

The type (e.g. fix) can be:

  • fix: A bug fix. Correlates with PATCH in SemVer

  • feat: A new feature. Correlates with MINOR in SemVer

  • docs: Documentation only changes

  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)

    If the commit fixes a Github issue, add something like this to the bottom of the description:

    fixes #4242