Home >Java >javaTutorial >What are the usage specifications of Java Git Commit Message?
For each submission, the Commit message includes three parts: Header, Body and Footer.
<type>(<scope>): <subject> // 空一行 <body>
Among them, Header, submission content Body for feat and fix types are required. Regardless of the section, no line must exceed 72 characters (or 100 characters). This is to prevent automatic line wrapping from affecting the appearance.
The Header part has only one line and includes three fields: type (required), scope (required) and subject (required).
(1)type
type is used to describe the category of commit. Only the following 7 identifiers are allowed.
feat:New features
##fix:Fix bug
docs:Documentation
style: Format (changes that do not affect code operation)
#refactor: Refactoring (that is, code changes that are not new features or bug fixes)
test:Add test
Changes in the build process or auxiliary tools
(3)subject
subject is a short description of the commit purpose, no more than 50 characters.
fix (model module): Model test failed1. The main process of rule online and offline, the engine subscribes normally, and fldl is generated normally. pass
2. When the rule goes online or offline, if a non-existent rule number is passed in, an exception will be prompted. pass2.2 fix example
Submitted by: xxx
1. Import mar model, including derived fields. pass
2. Import the mar model without derived fields. passPlug-in recommendation
Submitted by: xxx
1. Install the plug-in
## 2.Select the plug-in to submit when submitting
The above is the detailed content of What are the usage specifications of Java Git Commit Message?. For more information, please follow other related articles on the PHP Chinese website!