Skip to content

Commit

Permalink
chore: improve msg
Browse files Browse the repository at this point in the history
  • Loading branch information
chaewonkong committed Feb 15, 2024
1 parent e855a13 commit cd132da
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# ✨ Gitty
> a handy git commit formatter
Helps you to format commit message according to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)
Conventional Commit 규칙에 맞도록 커밋 메시지를 작성할 수 있도록 돕는 CLI 툴입니다.
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
Expand All @@ -11,15 +10,15 @@ Conventional Commit 규칙에 맞도록 커밋 메시지를 작성할 수 있도

### Select Options
```text
"feat": "기능 추가"
"fix": "버그 수정"
"refactor": "리팩터링"
"docs": "문서화"
"ci": "CI/CD"
"perf": "성능 개선"
"chore": "잡무"
"test": "테스트"
"style": "css 등 스타일 작업"
"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
Expand Down
Binary file modified gitty
Binary file not shown.
18 changes: 9 additions & 9 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import (
)

var CommitTypesMap = map[string]string{
"feat": "기능 추가",
"fix": "버그 수정",
"refactor": "리팩터링",
"docs": "문서화",
"ci": "CI/CD",
"perf": "성능 개선",
"chore": "잡무",
"test": "테스트",
"style": "css 등 스타일 작업",
"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)",
}

type CommitTypes struct {
Expand Down

0 comments on commit cd132da

Please sign in to comment.