summaryrefslogtreecommitdiffstats
path: root/pkg/config/user_config.go
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2023-02-08 22:40:18 +0900
committerRyooooooga <eial5q265e5@gmail.com>2023-02-19 23:31:46 +0900
commit67b08ac2395b350779f5fc72d75bd7180f7da394 (patch)
treec419dfa156fd08e96fa069990af28f8b6e495211 /pkg/config/user_config.go
parentb54b8ae746a008daa7e7006094c9a533a88eff1d (diff)
feat: support to create tag on branch
Diffstat (limited to 'pkg/config/user_config.go')
-rw-r--r--pkg/config/user_config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index 6aea0dc64..d9e736149 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -235,6 +235,7 @@ type KeybindingBranchesConfig struct {
MergeIntoCurrentBranch string `yaml:"mergeIntoCurrentBranch"`
ViewGitFlowOptions string `yaml:"viewGitFlowOptions"`
FastForward string `yaml:"fastForward"`
+ CreateTag string `yaml:"createTag"`
PushTag string `yaml:"pushTag"`
SetUpstream string `yaml:"setUpstream"`
FetchRemote string `yaml:"fetchRemote"`
@@ -521,6 +522,7 @@ func GetDefaultConfig() *UserConfig {
MergeIntoCurrentBranch: "M",
ViewGitFlowOptions: "i",
FastForward: "f",
+ CreateTag: "T",
PushTag: "P",
SetUpstream: "u",
FetchRemote: "f",