PR 和 Commit Message 指南

本文档介绍的 PR 和 Commit Message 指南适用于所有 Nebula Graph 仓库。 所有提交至 master 分支的 commit 均必须遵循以下准则。

Commit Message

  1. <type>(<scope>): <subject> // scope is optional, subject is must
  2. <body> // optional
  3. <footer> // optional

本指南参照 AngularJS commit 规则

  • <Type> 描述 commit 类型。
  • <subject> 是 commit 的简短描述。
  • 如需添加详细信息,请添加空白行,然后以段落格式进行添加。

Commit 类型

TypeDescription
Feature新功能
Fix修复 bug
Doc文档
Style代码格式
Refactor代码重构
Test增加测试
Chore构建过程或辅助工具的变动

Pull Request

提交 PR 时,请在标题中包含所有更改的详细信息,并确保标题简洁。

PR 标题必需简明概括更改信息。

对于显而易见的简单更改,可不必添加描述。如果 PR 涉及复杂更改,请对更改进行概述。如果 PR 修复了相关 issue,请关联。

Pull Request 模板

  1. What changes were proposed in this pull request?
  2. Why are the changes needed?
  3. Does this PR introduce any user-facing change?
  4. How was this patch tested?