-
Notifications
You must be signed in to change notification settings - Fork 0
/
gittey-config.json
47 lines (47 loc) · 1.39 KB
/
gittey-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"branchPrefix": {
"separator": "",
"validator": "",
"prefixes": {}
},
"commitPrefix": {
"separator": " ",
"validator": "^.{1,45}$",
"prefixes": {
"F": "Feature (<= 8 LoC)",
"B": "Bug fix (<= 8 LoC)",
"R": "Test-supported Procedural Refactoring",
"t": "Test only",
"d": "Developer documentation (non-user facing)",
"a": "Automated formatting / code generation",
"r": "Provable (manual) refactoring",
"c": "Comments (add/delete)",
"e": "Environment (non-code) changes (for development)",
"F!!": "Feature (> 8 LoC)",
"B!!": "Bug fix (> 8 LoC)",
"R!!": "Non-provable refactoring",
"***": "Does not compile -- intermediate step"
}
},
"aliases": [
{
"name": "pull",
"command": "gittey commit; git pull"
},
{
"name": "push",
"command": "gittey pull; git push"
},
{
"name": "push-minor",
"command": "gittey pull; node ./version-bump minor; git push origin master --tags"
},
{
"name": "push-patch",
"command": "gittey pull; node ./version-bump patch; git push origin master --tags"
}
],
"collaborators": [
"Chris Stead"
]
}