summaryrefslogtreecommitdiffstats
path: root/pkg/commands/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/config.go')
-rw-r--r--pkg/commands/config.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/commands/config.go b/pkg/commands/config.go
index 52eb82ac3..c5f56c7b4 100644
--- a/pkg/commands/config.go
+++ b/pkg/commands/config.go
@@ -93,3 +93,7 @@ func (self *ConfigCommands) Branches() (map[string]*config.Branch, error) {
return conf.Branches, nil
}
+
+func (self *ConfigCommands) GetGitFlowPrefixes() string {
+ return self.gitConfig.Get("--local --get-regexp gitflow.prefix.")
+}