Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/commit_message.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ==== Commit Messages ====

# ==== Commit Messages(Template) ====
# <type>: <subject>
# fix: Fixed a bug in the code
# hotfix: Fixed a critical bug in the code
# feat: Added new feature
# docs: Added documentation
# style: Updated code style
# refactor(clean,improve): Cleaned up code, improved code quality
# test: Added tests
# chore: Updated build tasks, package manager configs, etc
#
# ==== Emojis ====
# 🐛 :bug: Bug fix
# 👍 :+1: Functionality improvement
# ✨ :sparkles: Partial feature addition
# 🎨 :art: Design change only
# 💢 :anger: Conflict
# 🚧 :construction: WIP
# 📝 :memo: Wording correction
# ♻️ :recycle: Refactoring
# 🔥 :fire: Removal of unnecessary and unused features
# 💚 :green_heart: Test and CI corrections and improvements
# 👕 :shirt: Lint error corrections and code style corrections
# 🚀 :rocket: Performance improvement
# 🆙 :up: Update of dependent packages, etc.
# 👮 :cop: Security-related improvements
# ⚙ :gear: Config change
# 📚 :books: Documentation
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public_html/hot

storage/*.key
.env
.idea/
Homestead.yaml
Homestead.json
/.vagrant
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# blog-api-package
# blog-api-package

## commit template
```bash
git config --local commit.template .github/commit_message.txt
```