An open API service indexing awesome lists of open source software.

https://github.com/andre2l2/coco

CoCo is conventional commits table CLI
https://github.com/andre2l2/coco

cli cli-to cli-utilities conventional-commits terminal utilities utils

Last synced: over 1 year ago
JSON representation

CoCo is conventional commits table CLI

Awesome Lists containing this project

README

          



CoCo


## What means CoCo

**C**o**C**o means **C**onventional **C**ommits and **C**o**C**o is coconut in Portuguese 🇧🇷. **C**o**C**o is a CLI table for show you all conventional commits in your terminal. I created this CLI becuse I every forget _What all onventional commits types?_ Now is here 😜

You can check the CoCo table in [github gist](https://gist.github.com/andre2l2/965b62efd1a5b24b6f83dc1cfdace7ac)

## Run

Test with the below command

```bash
curl -s https://gist.githubusercontent.com/andre2l2/965b62efd1a5b24b6f83dc1cfdace7ac/raw/f2a850ffd7db4c0b8ea14fefa8ff9bd373b434aa/conventional-commits.md | less
```

![](./public/screenshot-example-1.png)

## Install

### zsh

```bash
echo "alias coco=\"curl -s https://gist.githubusercontent.com/andre2l2/965b62efd1a5b24b6f83dc1cfdace7ac/raw/f2a850ffd7db4c0b8ea14fefa8ff9bd373b434aa/conventional-commits.md | less\"" >> ~/.zshrc && source ~/.zshrc
```

### bash

```bash
echo "alias coco=\"curl -s https://gist.githubusercontent.com/andre2l2/965b62efd1a5b24b6f83dc1cfdace7ac/raw/f2a850ffd7db4c0b8ea14fefa8ff9bd373b434aa/conventional-commits.md | less\"" >> ~/.bashrc && source ~/.bashrc
```