gitorade

git commit on steroids


Keywords
commit, git, helpers
License
MIT
Install
pip install gitorade==1.0.6

Documentation

pre-commit.ci status Build Status image image

gitorade

background

Tired of dummy commit messages like "fix bug" or "update readme"?

Gitorade is a simple tool for semantically sample and format your git commits and keep a nice clean commit history, and make your fellow developers happy :)

Installation

pip install gitorade

Usage

gitorade <type> -m <message>

For example:

gitorade feat -m "add new feature"

Will generate a commit message like: [feat]: add new feature

Types

  • feat - new feature
  • fix - bug fix
  • docs - changes to documentation
  • style - formatting, missing semi colons, etc; no code change
  • refactor - refactoring production code
  • perf - performance improvement
  • test - adding tests, refactoring test; no production code change
  • chore - updating build tasks, package manager configs, etc; no production code change
  • revert - reverting changes
  • build - changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci - changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • release - version bump
  • other - other changes

License

MIT

Author

Marouane Skandaji

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Acknowledgements