0.0.1 ā€¢ Published 2 years ago

gitta v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

šŸ’Ž Gitta

A simple CLI to generate and format your commit messages with an emoji, type, and scope. Gitta aims to streamline your commit messages to follow consistently with the Conventional Commits specification.

āœØ Features

  • Consistent commit messages every time.
  • Customizable emojis and prefixes.
  • Option to update from default or custom source for newly added emojis/prefixes.
  • Quick lookup for emojis.

šŸš€ Installation

npm i -g gitta

āš” Commands

gitta -c/--commit

Instantly commit you changes by answering a few short prompts.

$ gitta -c

? Select an emoji (Use arrow keys or type to search)
> āœØ :sparkles: - Adding a new feature to the code.
  šŸ› :bug: - Fixed bug in code.
  šŸ“’ :ledger: - Updated documentation for project.
  šŸø :cocktail: - Updated code formatting and styling.
  šŸŽØ :art: - Refactoring code in project.
  āœ… :white_check_mark: - Adding or updating tests.
  šŸ”§ :wrench: - Fixing unreported issue in code.
(Move up and down to reveal more choices)
? Select an emoji šŸŽØ :art: - Refactoring code in project.

? Specify file(s) updated constant.ts
? Set commit title Inherit name and version from package.json
? Set commit message (optional)
[master 017b307] :art: refactor(constant.ts): Inherit name and version from package.json 1 file changed, 2 insertions(+), 2 deletions(-)

gitta -e/--edit

Open directory of emoji and prefixes files for editing.

$ gitta -e

Opening emoji/prefix directory...

gitta -h/--help

Display help message.

   šŸ’Ž Personalized git commit messages.

  Usage
      $ gitta -[cehlrsuv]

  Options
      --commit, -c        An interactive prompt that handles committing your changes.
      --edit, -e          Edit stored emoji/prefix files.
      --help, -h          Display help message.
      --list, -l          List your configured gitta emojis/prefixes.
      --reconfig, -r      Reconfigure gitta settings.
      --search, -s        Search for emoji given keywords.
      --update, -u        Refresh list of emojis/prefixes (does not overwrite custom).
      --version, -v       Display version of gitta.

  Examples
      gitta -l

gitta -l/--list

List configured (default + custom) emojis and prefixes for gitta.

List emojis

$ gitta -l

? What data do you want to list out? (Use arrow keys)
> emojis
  prefixes

? What data do you want to list out? emojis
āœØ :sparkles: (feat) - Adding a new feature to the code.
šŸ› :bug: (fix) - Fixed bug in code.
šŸ“’ :ledger: (docs) - Updated documentation for project.
šŸø :cocktail: (style) - Updated code formatting and styling.
...

List prefixes

$ gitta -l

? What data do you want to list out? (Use arrow keys)
  emojis
> prefixes

? What data do you want to list out? prefixes
feat (Feature) - Adding new feature to existing project.
bug (Bug Fix) - Fixing existing bugs.
chore (Chore) - Something that just had to be done.
docs (Documentation) - Adding documentation to project.
...

gitta -r/--reconfig

Reconfigure gitta settings.

$ gitta -r

? Automatically add all files to your commit. (Y/n) Y
? Choose how your emojis should be displayed. (Use arrow keys)
> :tada:
  šŸŽ‰

? Choose how your emojis should be displayed. :tada:
? Set if commits should be signed by default. (Y/n) Y
? Set if Conventional Commits standard should be used (specify files affected by commit). (Y/n) Y
? Set Gitta emoji refresh url. (https://raw.githubusercontent.com/Spiderpig86/gitta/master/configuration/emojis.json)
? Set Gitta prefix refresh url. (https://raw.githubusercontent.com/Spiderpig86/gitta/master/configuration/prefixes.json)

gitta -s/--search

Interactive search for emojis.

$ gitta -s

? Search for emoji:  (Use arrow keys or type to search)
> āœØ :sparkles: (feat) - Adding a new feature to the code.
  šŸ› :bug: (fix) - Fixed bug in code.
  šŸ“’ :ledger: (docs) - Updated documentation for project.
  šŸø :cocktail: (style) - Updated code formatting and styling.
  šŸŽØ :art: (refactor) - Refactoring code in project.
  āœ… :white_check_mark: (test) - Adding or updating tests.
  šŸ”§ :wrench: (chore) - Fixing unreported issue in code.
(Move up and down to reveal more choices)

gitta -u/--update

Update emojis/prefixes from source specified in your configuration.

$ gitta -u

āœ” Succeeded fetching prefixes!
āœ” Succeeded fetching emojis!

gitta -v/--version

Get verison of gitta.

$ gitta -v

0.0.1

āš™ Configuration

gitta can be configured in 2 places:

  • ~/.gitta - stores emoji and prefix files.
  • ~/gitta-nodejs\Config\config.json - settings handled by Conf when you configre with gitta -r. Note that the path is AppData\Roaming\ for Windows.

You can actually add your own emojis and prefixes. All you need to do is add it to the custom sections. These will never be overwritten when using gitta -u.

Emojis

{
    "default": [
        {
            "emoji": "āœØ",
            "code": ":sparkles:",
            "type": "feat",
            "name": "sparkles",
            "description": "Adding a new feature to the code."
        }
    ],
    "custom": []
}

Prefixes

{
    "default": [
        {
            "name": "Feature",
            "description": "Adding new feature to existing project.",
            "prefix": "feat"
        }
    ],
    "custom": []
}

Default Emojis

emojicodetypedescription
āœØ:sparkles:featAdding a new feature to the code.
šŸ›:bug:fixFixed bug in code.
šŸ“’:ledger:docsUpdated documentation for project.
šŸø:cocktail:styleUpdated code formatting and styling.
šŸŽØ:art:refactorRefactoring code in project.
āœ…:white_check_mark:testAdding or updating tests.
šŸ”§:wrench:choreFixing unreported issue in code.
šŸš€:rocket:chorePerfoming deployment for code.
šŸ”’:lock:choreFixing security issues.
šŸš§:construction:featWork in progress.
ā¬†ļø:arrow_up:choreUpgrading dependecies.
āž•:heavy_plus_sign:choreAdding a dependency.
āž–:heavy_minus_sign:choreRemoving a dependency.
āŖ:rewind:choreReverting changes.
šŸ”€:twisted_rightwards_arrows:choreMerging branches.
ā—ļø:heavy_exclamation_mark:featAdding breaking changes.
šŸ·ļø:label:choreUpdating type definitions.
šŸ—‘ļø:wastebasket:choreRemove deprecated code.
šŸŽ‰:tada:featInitial commit.