Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
technical-reference
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FE
technical-reference
Merge requests
!23
feat: make the repo commitizen friendly
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: make the repo commitizen friendly
feature/#20-commitizen-friendliness
into
master
Overview
14
Commits
7
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Merged
Michelle Weidling
requested to merge
feature/#20-commitizen-friendliness
into
master
4 years ago
Overview
14
Commits
7
Pipelines
0
Changes
4
All threads resolved!
Hide all comments
Expand
closes
#20 (closed)
Edited
4 years ago
by
Stefan Hynek
0
0
Merge request reports
Compare
version 1
version 5
01d68d06
4 years ago
version 4
c86fac77
4 years ago
version 3
4e54df83
4 years ago
version 2
b2645c64
4 years ago
version 1
fcb002c9
4 years ago
master (base)
and
version 5
latest version
0b01a035
7 commits,
4 years ago
version 5
01d68d06
6 commits,
4 years ago
version 4
c86fac77
5 commits,
4 years ago
version 3
4e54df83
4 commits,
4 years ago
version 2
b2645c64
3 commits,
4 years ago
version 1
fcb002c9
1 commit,
4 years ago
Show latest version
4 files
+
208
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
.cz-config.js
0 → 100644
+
68
−
0
Options
module
.
exports
=
{
types
:
[
{
value
:
'
tr-s
'
,
name
:
'
tr-s: Small addition to or revision of the Technical Reference
'
},
{
value
:
'
tr-m
'
,
name
:
'
tr-m: Medium addition to or revision of the Technical Reference
'
},
{
value
:
'
tr-l
'
,
name
:
'
tr-l: Huge contribution to or revision of the Technical Reference
'
},
{
value
:
'
feat
'
,
name
:
'
feat: A new feature
'
},
{
value
:
'
fix
'
,
name
:
'
fix: A bug fix
'
},
{
value
:
'
docs
'
,
name
:
'
docs: General documentation-only changes
'
},
{
value
:
'
style
'
,
name
:
'
style: Changes that do not affect the meaning of the code
\n
(white-space, formatting, missing semicolons, etc)
'
,
},
{
value
:
'
test
'
,
name
:
'
test: Adding missing tests
'
},
{
value
:
'
build
'
,
name
:
'
build: Changes that affect the build system or dependencies
\n
(example scopes: npm, docker, pip, ant)
'
,
},
{
value
:
'
ci
'
,
name
:
'
ci: Changes to the CI configuration
\n
(example scopes: gitlab, travis)
'
,
},
{
value
:
'
chore
'
,
name
:
'
chore: Other changes that modify files other than source or test files
'
},
{
value
:
'
revert
'
,
name
:
'
revert: Revert to a commit
'
},
],
// it needs to match the value for field type. Eg.: 'fix'
/*
scopeOverrides: {
fix: [
{name: 'merge'},
{name: 'style'},
{name: 'e2eTest'},
{name: 'unitTest'}
]
},
*/
// override the messages, defaults are as follows
messages
:
{
type
:
"
Select the type of change that you're committing:
"
,
scope
:
'
\n
Denote the SCOPE of this change (optional):
'
,
// used if allowCustomScopes is true
customScope
:
'
Denote the SCOPE of this change:
'
,
subject
:
'
Write a SHORT, IMPERATIVE mood description of the change:
\n
'
,
body
:
'
Provide a LONGER description of the change (optional). Use "|" to break new line:
\n
'
,
breaking
:
'
List any BREAKING CHANGES (optional):
\n
'
,
footer
:
'
Reference ISSUES touched by this change (optional). E.g.: closes #31, see #34:
\n
'
,
confirmCommit
:
'
Are you sure you want to proceed with the commit above?
'
,
},
allowCustomScopes
:
true
,
allowBreakingChanges
:
[
'
feat
'
,
'
fix
'
],
// skip any questions you want
skipQuestions
:
[
'
body
'
],
// limit subject length
subjectLimit
:
100
,
// breaklineChar: '|', // It is supported for fields body and footer.
footerPrefix
:
''
// askForBreakingChangeFirst : true, // default is false
};
Loading