Skip to content

Instantly share code, notes, and snippets.

@PThorpe92
Created August 20, 2023 15:18
Show Gist options
  • Save PThorpe92/103cdf8201ae5cd6ee1d426a71010c83 to your computer and use it in GitHub Desktop.
Save PThorpe92/103cdf8201ae5cd6ee1d426a71010c83 to your computer and use it in GitHub Desktop.
eza_commits

Examples

  • feat: add column selection
  • fix(output): fix width issue with columns
  • test(fs): add tests for filesystem metadata
  • feat!: breaking change / feat(config)!: implement config file
  • chore(deps): update dependencies

Commit types

  • build: Changes that affect the build system or external dependencies (example libgit2)
  • ci: Changes to CI configuration files and scripts (example scopes: Nix, Vagrant, Docker)
  • chore: Changes which do not change source code or tests (example: changes to the build process, auxiliary tools, libraries)
  • docs: Documentation, README, completions, manpage only
  • feat: A new feature
  • fix: A bug fix
  • perf: A code change that improves or addresses a performance issue
  • refactor: A code change that neither fixes a bug nor adds a feature
  • revert: Revert something
  • style: Changes that do not affect the meaning of the code (example: clippy)
  • test: Adding missing tests or correcting existing tests

Reminders

Put newline before extended commit body

More details at conventionalcommits.org

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment