forked from Ericsson/codechecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a commit message template file to the repository and create a target in the main Makefile which will set this template as a default commit message template on package build target.
- Loading branch information
1 parent
4aac198
commit 9ec4ee8
Showing
2 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
# [<tag>] <subject> (Max 70 char) | ||
# |<---- Preferably using up to 60 chars --->|<------------------->| | ||
# Example: [feature] Implement automated commit messages | ||
|
||
# (Optional) Explain why this change is being made | ||
# |<---- Try To Limit Each Line to a Maximum Of 70-75 Characters ---->| | ||
|
||
# --- COMMIT END --- | ||
# Tag can be | ||
# analyzer (Analyzer related changes) | ||
# clang (Clang Static Analyzer related changes) | ||
# clang-tidy (Clang Tidy related changes) | ||
# cmd (Command line changes) | ||
# cfg (Config file changes) | ||
# db (Issues related to the database schema) | ||
# doc (Changes to documentation) | ||
# gui (Changes in the web GUI) | ||
# fix (Bug fix) | ||
# feat (New feature) | ||
# plist2html (Changes in the plist-to-html tool) | ||
# refactor (Refactoring code) | ||
# server (Server related changes) | ||
# style (Formatting, missing semi colons, etc; no code change) | ||
# test (Adding or refactoring tests; no production code change) | ||
# tu-collector (Changes in the tu-collector tool) | ||
# version (Version bump/new release; no production code change) | ||
# web (Changes in the web module) | ||
# | ||
# Note: Multiple tags can be combined, e.g. [feat][server] Save and load filters in the GUI | ||
# -------------------- | ||
# Remember to: | ||
# * Capitalize the subject line. | ||
# * Use the imperative mood in the subject line. | ||
# * Do not end the subject line with a period. | ||
# * Separate subject from body with a blank line. | ||
# * Use the body to explain what and why vs how. | ||
# * Can use multiple lines with "-" or "*" for bullet points in body. | ||
# -------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters