Git emoji 정리
| 작성일 | 2023년 12월 04일 |
|---|---|
| 수정일 | 2024년 03월 20일 |
| 카테고리 | 기술 |
| 태그 | |
| 원본 | https://croot.notion.site/91627c4d967c4dea86b32bfa22ea9fb7 |
| Type | 타입명 | 이모지 | 설명 |
|---|---|---|---|
| feat | Feature | ✨ :sparkles: |
새로운 기능 추가 |
| Add, update, or remove feature. | |||
| fix | Bugfix | 🐛 :bug: |
버그 수정 |
| Fix a bug. | |||
| refac | Refactoring | ♻️ :recycle: |
코드 리팩토링 |
| Refactor code. | |||
| test | Test | ✅ :white_check_mark: |
테스트 코드 수정 |
| Add, update, or pass tests. | |||
| style | Style | 💄 :lipstick: |
UI, 스타일 파일 수정 |
| Add or update the UI and style files. | |||
| doc | Document | 📝 :memo: |
문서 업데이트 |
| Add or update documentation. | |||
| build | Build | 🔨 :wranch: |
빌드 시스템 또는 구성 관련 변경 |
| Add or update CI build system. | |||
| dep | Dependency Update | ⬆️ :arrow_up: |
의존성 업데이트 |
| Upgrade/Downgrade dependencies. |
// ~/.vscode/settings.json
{
"gitmoji.onlyUseCustomEmoji": true,
"gitmoji.addCustomEmoji": [
{
"emoji": "🔨",
"code": ":hammer:",
"description": "build : Add or update CI build system."
},
{
"emoji": "📝",
"code": ":memo:",
"description": "doc : Add or update documentation."
},
{
"emoji": "✨",
"code": ":sparkles:",
"description": "feat : Add, update, or remove feature."
},
{
"emoji": "🐛",
"code": ":bug:",
"description": "fix : Fix a bug."
},
{
"emoji": "♻️",
"code": ":recycle:",
"description": "refac : Refactor code."
},
{
"emoji": "💄",
"code": ":lipstick:",
"description": "style : Add or update the UI and style files."
},
],
}
Previous Dec 2, 2023
« Ruby gems 삭제하기
« Ruby gems 삭제하기
Dec 5, 2023 Next
Gulp를 이용한 정적 HTML 개발환경 구축 »
Gulp를 이용한 정적 HTML 개발환경 구축 »