git commit comment rules

1. chore: Project Initialization 

git commit -m 'chore: 项目搭建'

2. feat: to add new features

git commit -m 'feat: xx'

3. fix: 改bug

git commit -m 'fix: xx'

4. style: style modification, UI walkthrough

git commit -m 'style: xx'

5. test: the test environment deployment

git commit -m 'test: xx'

 

Guess you like

Origin blog.csdn.net/Luckyzhoufangbing/article/details/90770228
Recommended