https://github.com/chaewonkong/gitty
✨ Gitty, a handy git commit formatter
https://github.com/chaewonkong/gitty
commit-message git go
Last synced: 10 months ago
JSON representation
✨ Gitty, a handy git commit formatter
- Host: GitHub
- URL: https://github.com/chaewonkong/gitty
- Owner: chaewonkong
- Created: 2024-02-15T02:08:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T07:45:18.000Z (almost 2 years ago)
- Last Synced: 2024-06-21T15:22:55.957Z (over 1 year ago)
- Topics: commit-message, git, go
- Language: Go
- Homepage:
- Size: 36.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ✨ Gitty
> a handy git commit formatter
Gitty is a CLI tool built with Go, helps you to format commit message according to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)

```text
// Message format
[optional scope]:
```
### Select Options
```text
"feat": "Adding new features"
"fix": "Fixing the bugs"
"refactor": "Refactoring codes"
"docs": "Documentation"
"ci": "CI/CD improvements"
"perf": "Performance Enhancement"
"chore": "Tedious task done"
"test": "Adding/Editing tests"
"style": "Style changes (like css)"
```
## Installation
If you are using MacOS, you can install it with brew.
```shell
brew tap chaewonkong/homebrew-gitty
brew install gitty
```
Or if you are familiar to Go, just run the following
```shell
go install github.com/chaewonkong/gitty@v1.0.5
```
## Run
All you need to do is just run `gitty` in your terminal after git add.
```shell
gitty
```