-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
57 lines (57 loc) · 1.83 KB
/
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
48
49
50
51
52
53
54
55
56
57
{
"commands": {
"branch": {
"showHead": false,
"branchTypes": [
{
"branchNames": ["main", "master"],
"branchStartsWith": null,
"color": "00FF00",
"icon": "nf-mdi-crown"
},
{
"branchNames": ["stable", "release", "production"],
"branchStartsWith": ["release", "rel"],
"color": "00FF00",
"icon": "nf-fa-check"
}
,
{
"branchNames": null,
"branchStartsWith": ["feature", "topic", "wip"],
"color": "EEEE8B",
"icon": "nf-fa-star_o"
},
{
"branchNames": null,
"branchStartsWith": ["bug"],
"color": "FF0000",
"icon": "nf-fa-bug"
},
{
"branchNames": null,
"branchStartsWith": ["hotfix"],
"color": "FF7900",
"icon": "nf-fa-fire"
},
{
"branchNames": ["dev", "development"],
"branchStartsWith": ["dev", "development"],
"color": "EEEE8B",
"icon": "nf-mdi-code_braces"
}
,
{
"branchNames": ["test", "testing"],
"branchStartsWith": ["test", "testing"],
"color": "EEEE8B",
"icon": "nf-mdi-test_tube"
}
]
},
"checkout": {
"includeHead": false,
"pullAfterCheckout": true
}
}
}