Git使用

harry

Git使用

版本库 暂存区 工作区

1
2
3
4
5
6
7
8
9
10
11
12
13
git remote add origin https://gitee.com/gabriel-qin/gnn-stable.git

git checkout develop

git pull origin master

# 写好.gitignore 文件
# 添加到暂存区
git add .
#提交到版本库
git commit -m 'your commit message'
# push到gitee
git push origin master

Commit messages的基本语法

当前业界应用的比较广泛的是 Angular Git Commit Guidelines

“https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines

具体格式为:

1
<type>: <subject><BLANK LINE><body><BLANK LINE><footer>
  • type: 本次 commit 的类型,诸如 bugfix docs style 等

  • scope: 本次 commit 波及的范围

  • subject: 简明扼要的阐述下本次 commit 的主旨,在原文中特意强调了几点:

    • 使用祈使句,是不是很熟悉又陌生的一个词

    • 首字母不要大写

    • 结尾无需添加标点

  • body: 同样使用祈使句,在主体内容中我们需要把本次 commit 详细的描述一下,比如此次变更的动机,如需换行,则使用 |

  • footer: 描述下与之关联的 issue 或 break change

Type的类别说明:

  • feat: 添加新特性
  • fix: 修复bug
  • docs: 仅仅修改了文档
  • style: 仅仅修改了空格、格式缩进、都好等等,不改变代码逻辑
  • refactor: 代码重构,没有加新功能或者修复bug
  • perf: 增加代码进行性能测试
  • test: 增加测试用例
  • chore: 改变构建流程、或者增加依赖库、工具等
ocean