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
- Host: GitHub
- URL: https://github.com/andre2l2/coco
- Owner: andre2l2
- Created: 2024-01-25T00:57:15.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-09T00:42:12.000Z (over 1 year ago)
- Last Synced: 2025-01-06T05:28:43.532Z (over 1 year ago)
- Topics: cli, cli-to, cli-utilities, conventional-commits, terminal, utilities, utils
- Homepage:
- Size: 207 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```

## 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
```