Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liorocks/cz-gitmoji
š¬š Commitizen adapter for gitmoji.
https://github.com/liorocks/cz-gitmoji
commit commitizen commitizen-adapter emoji emojis git gitmoji gitmoji-cli
Last synced: 3 months ago
JSON representation
š¬š Commitizen adapter for gitmoji.
- Host: GitHub
- URL: https://github.com/liorocks/cz-gitmoji
- Owner: liorocks
- License: mit
- Created: 2017-07-26T18:13:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-07T20:31:43.000Z (over 7 years ago)
- Last Synced: 2024-11-06T09:43:35.729Z (3 months ago)
- Topics: commit, commitizen, commitizen-adapter, emoji, emojis, git, gitmoji, gitmoji-cli
- Language: JavaScript
- Homepage: https://liorocks.github.io/cz-gitmoji/
- Size: 35.2 KB
- Stars: 31
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
cz-gitmoji
> [Commitizen](https://github.com/commitizen/cz-cli) adapter for [gitmoji](https://gitmoji.carloscuesta.me/).
**cz-gitmoji** allows you to easily use gitmojis in your commits using [commitizen](https://github.com/commitizen/cz-cli).
```sh
? Select the type of change you're committing:
šØ - :art: - Improving structure / format of the code.
ā”ļø - :zap: - Improving performance.
š„ - :fire: - Removing code or files.
āÆ š - :bug: - Fixing a bug.
š - :ambulance: - Critical hotfix.
āØ - :sparkles: - Introducing new features.
š - :memo: - Writing docs.
š - :rocket: - Deploying stuff.
š - :lipstick: - Updating the UI and style files.
š - :tada: - Initial commit.
ā - :white_check_mark: - Adding tests.
š - :lock: - Fixing security issues.
š - :apple: - Fixing something on macOS.
š§ - :penguin: - Fixing something on Linux.
š - :checkered_flag: - Fixing something on Windows.
š¤ - :robot: - Fixing something on Android.
š - :green_apple: - Fixing something on iOS.
š - :bookmark: - Releasing / Version tags.
šØ - :rotating_light: - Removing linter warnings.
š§ - :construction: - Work in progress.
š - :green_heart: - Fixing CI Build.
ā¬ļø - :arrow_down: - Downgrading dependencies.
ā¬ļø - :arrow_up: - Upgrading dependencies.
š· - :construction_worker: - Adding CI build system.
š - :chart_with_upwards_trend: - Adding analytics or tracking code.
šØ - :hammer: - Refactoring code.
ā - :heavy_minus_sign: - Removing a dependency.
š³ - :whale: - Work about Docker.
ā - :heavy_plus_sign: - Adding a dependency.
š§ - :wrench: - Changing configuration files.
š - :globe_with_meridians: - Internationalization and localization.
āļø - :pencil2: - Fixing typos.
š© - :hankey: - Writing bad code that needs to be improved.
āŖ - :rewind: - Reverting changes.
š - :twisted_rightwards_arrows: - Merging branches.
š¦ - :package: - Updating compiled files or packages.
š½ - :alien: - Updating code due to external API changes.
š - :truck: - Moving or renaming files.
š - :page_facing_up: - Adding or updating license.
š„ - :boom: - Introducing breaking changes.
š± - :bento: - Adding or updating assets.
š - :ok_hand: - Updating code due to code review changes.
āæļø - :wheelchair: - Improving accessibility.
š” - :bulb: - Documenting source code.
š» - :beers: - Writing code drunkenly.
š¬ - :speech_balloon: - Updating text and literals.
š - :card_file_box: - Performing database related changes.
š - :loud_sound: - Adding logs.
š - :mute: - Removing logs.
```## Install
```bash
$ npm install --global cz-gitmoji
```## Set Globally
```bash
echo '{ "path": "cz-gitmoji" }' > ~/.czrc
```
This will set as default adapter for all your projects.## Usage
```sh
$ git cz
```## Customize
You can customize types for per project by adding a configuration section in your `package.json`:
```json
{
"config": {
"cz-gitmoji": {}
}
}
```For example:
```json
{
"config": {
"cz-gitmoji": {
"types": [
{
"name": "bad \tš© bad code",
"value": ":hankey:"
}
]
}
}
}
```### Inspired by
- [gitmoji](https://gitmoji.carloscuesta.me/)
- [gitmoji-cli](https://github.com/carloscuesta/gitmoji-cli)
- [commitizen](https://github.com/commitizen/cz-cli)
- [cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog)
- [cz-emoji](https://github.com/ngryman/cz-emoji)
- [emoji-cz](https://github.com/kevin940726/emoji-cz)## Licence
[The MIT License](https://github.com/Landish/cz-gitmoji/blob/master/LICENSE)