Finclip代码管理

 

Here’s the table of contents:

  1. Conventional Commits格式
  2. 配置Git用户-局部
  3. 配置Git用户-全局

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"