All Projects → carloscuesta → Gitmoji Cli

carloscuesta / Gitmoji Cli

Licence: mit
This project provides an easy solution for using gitmoji from your command line. Gitmoji-cli solves the hassle of searching through the gitmoji list. Includes a bunch of options you can play with! 🎉

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Gitmoji Cli

cz-gitmoji
🔬😜 Commitizen adapter for gitmoji.
Stars: ✭ 25 (-99.29%)
Mutual labels:  emoji, gitmoji, gitmoji-cli
Yeetgif
gif effects CLI. single binary, no dependencies. linux, osx, windows. #1 workplace productivity booster. #yeetgif #eggplant #golang
Stars: ✭ 467 (-86.71%)
Mutual labels:  cli, emoji
Fliplog
fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, tracking, presets, & more...
Stars: ✭ 41 (-98.83%)
Mutual labels:  cli, emoji
Gitmoji
Gitmoji is an initiative to standardize and explain the use of emojis on GitHub commit messages.
Stars: ✭ 10,953 (+211.7%)
Mutual labels:  emoji, gitmoji
Node Semantic Git Commit Cli
A CLI for semantic git commits
Stars: ✭ 114 (-96.76%)
Mutual labels:  cli, emoji
Box Cli Maker
Make Highly Customized Boxes for your CLI
Stars: ✭ 115 (-96.73%)
Mutual labels:  cli, emoji
Gitmoji Changelog
A changelog generator for gitmoji 😜
Stars: ✭ 250 (-92.89%)
Mutual labels:  cli, emoji
gitmoji-intellij-plugin
Intellij plugin for add a button on the commit dialog to add gitmoji
Stars: ✭ 35 (-99%)
Mutual labels:  emoji, gitmoji
Fsociety
A Modular Penetration Testing Framework
Stars: ✭ 259 (-92.63%)
Mutual labels:  cli
Github cli
GitHub on your command line. Use your terminal, not the browser.
Stars: ✭ 263 (-92.52%)
Mutual labels:  cli
Nord Gnome Terminal
An arctic, north-bluish clean and elegant GNOME Terminal color theme.
Stars: ✭ 258 (-92.66%)
Mutual labels:  cli
Ddh
A fast duplicate file finder
Stars: ✭ 262 (-92.54%)
Mutual labels:  cli
Fastify Cli
Run a Fastify application with one command!
Stars: ✭ 260 (-92.6%)
Mutual labels:  cli
I18next Scanner
Scan your code, extract translation keys/values, and merge them into i18n resource files.
Stars: ✭ 259 (-92.63%)
Mutual labels:  cli
Picocli
Picocli is a modern framework for building powerful, user-friendly, GraalVM-enabled command line apps with ease. It supports colors, autocompletion, subcommands, and more. In 1 source file so apps can include as source & avoid adding a dependency. Written in Java, usable from Groovy, Kotlin, Scala, etc.
Stars: ✭ 3,286 (-6.49%)
Mutual labels:  cli
Pushbullet Cli
Access Pushbullet from the command line
Stars: ✭ 260 (-92.6%)
Mutual labels:  cli
Graphqurl
curl for GraphQL with autocomplete, subscriptions and GraphiQL. Also a dead-simple universal javascript GraphQL client.
Stars: ✭ 3,012 (-14.29%)
Mutual labels:  cli
Td
Your todo list in your terminal
Stars: ✭ 265 (-92.46%)
Mutual labels:  cli
Arduino Cli
Arduino command line tool
Stars: ✭ 3,173 (-9.7%)
Mutual labels:  cli
Terminus
The Pantheon CLI — a standalone utility for performing operations on the Pantheon Platform
Stars: ✭ 263 (-92.52%)
Mutual labels:  cli

gitmoji-cli

Build Status Code Climate Codecov npm version npm downloads gitmoji badge

gitmoji-cli

A gitmoji interactive client for using gitmojis on commit messages.

About

This project provides an easy solution for using gitmoji from your command line. Gitmoji-cli solves the hassle of searching through the gitmoji list. Includes a bunch of options you can play with! 🎉

Install

npm

$ npm i -g gitmoji-cli

brew

$ brew install gitmoji

Usage

$ gitmoji --help
A gitmoji interactive client for using gitmojis on commit messages.

  Usage
    $ gitmoji
  Options
    --init, -i      Initialize gitmoji as a commit hook
    --remove, -r    Remove a previously initialized commit hook
    --config, -g    Setup gitmoji-cli preferences.
    --commit, -c    Interactively commit using the prompts
    --list, -l      List all the available gitmojis
    --search, -s    Search gitmojis
    --version, -v   Print gitmoji-cli installed version
    --update, -u    Sync emoji list with the repo

Commit

You can use the commit functionality in two ways, directly or via a commit-hook.

If you want to integrate gitmoji-cli in your project I would recommend going for the hook mode as it support more use cases, it's more flexible and has a better integration with other tools, whereas the client mode is more quick and easy to use.

Client

Start the interactive commit client, to auto generate your commit based on your prompts.

$ gitmoji -c
Options

You can pass default values to the prompts using the following flags:

  • title: For setting the commit title.
  • message: For setting the commit message.
  • scope: For setting the commit scope.

Those flags should be used like this:

$ gitmoji -c --title="Commit" --message="Message" --scope="Scope"

Hook

Run the init option, add your changes and commit them, after that the prompts will begin and your commit message will be built.

$ gitmoji -i
$ git add .
$ git commit

⚠️ The hook should not be used with the gitmoji -c command.

gitmoji commit

Search

Search using specific keywords to find the right gitmoji.

$ gitmoji -s "criteria"

gitmoji search

List

Pretty print all the available gitmojis.

$ gitmoji -l

gitmoji list

Update

Update the gitmojis list, by default the first time you run gitmoji, the cli creates a cache to allow using this tool without internet connection.

$ gitmoji -u

Config

Run gitmoji -g to setup some gitmoji-cli preferences.

gitmoji config

Options

  • Automatic git add: Enable or disable the automatic git add . everytime you use the commit command.
  • Emoji format: Switch between the emoji format.
  • Scope prompt: Enable or disable conventional commits scope prompt.
  • Signed commits: Enable or disable signed commits with GPG.
  • Gitmojis api URL: Set a custom URL to use it as the library of gitmojis.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].