summaryrefslogtreecommitdiffstats
path: root/pkg/config/user_config.go
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2023-01-02 00:49:59 +0900
committerRyooooooga <eial5q265e5@gmail.com>2023-01-06 11:15:33 +0900
commit965f7bfcb219c7a08a9dbd865bd86e96fbe7e768 (patch)
treed069a516ce2d23c0c4a260e7e2d423b6f72dbc26 /pkg/config/user_config.go
parent1cf24a02d3994dc74ebf445481f2e4ea990e3f89 (diff)
feat(config): change `git.commit.verbose` to accept "default"
Diffstat (limited to 'pkg/config/user_config.go')
-rw-r--r--pkg/config/user_config.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index 06dcf085b..59244f3f4 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -93,8 +93,8 @@ type PagingConfig struct {
}
type CommitConfig struct {
- SignOff bool `yaml:"signOff"`
- Verbose bool `yaml:"verbose"`
+ SignOff bool `yaml:"signOff"`
+ Verbose string `yaml:"verbose"`
}
type MergingConfig struct {
@@ -387,7 +387,7 @@ func GetDefaultConfig() *UserConfig {
},
Commit: CommitConfig{
SignOff: false,
- Verbose: false,
+ Verbose: "default",
},
Merging: MergingConfig{
ManualCommit: false,