Here’s the table of contents:
Conventional Commits格式
fix: 修复App.vue内容
feat: add new feature X
docs: 更新README.md
配置Git用户-局部
git config user.name "Your Name"
git config user.email "your.email@example.com"
配置Git用户-全局
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"