软考的高级系统架构师的资料
- Feat: 新功能(feature)
- Fix: 修补 bug
- Docs: 文档(documentation)
- Style: 格式(不影响代码运行的变动)
- Refactor: 重构(即不是新增功能,也不是修改 bug 的代码变动)
- Test: 增加测试
- Chore: 构建过程或辅助工具的变动
git add . && git commit -m "Feat: add new feature" && git push
git add . && git commit -m "Fix: fix docker compose bug" && git push
git add . && git commit -m "Docs: update README.md" && git push
git add . && git commit -m "Style: format code" && git push
git add . && git commit -m "Refactor: refactor annotation code" && git push
git add . && git commit -m "Test: add test" && git push
git add . && git commit -m "Chore: update docker build process" && git push