From 29758c6b5a5b9f19b5340ab57f47dac93ad3ed52 Mon Sep 17 00:00:00 2001 From: Mihail Pozarski Date: Fri, 22 Jan 2021 15:55:07 -0300 Subject: [PATCH] fix(ksec-create): add fix action --- git-ksec-create | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-ksec-create b/git-ksec-create index 2b9da89..8730acc 100755 --- a/git-ksec-create +++ b/git-ksec-create @@ -24,7 +24,7 @@ unless `git ls-files -m`.empty? end case ARGV[0] -when 'feat', 'feature', 'refactor', 'chore' +when 'feat', 'fix', 'refactor', 'chore' `git checkout #{options[:branch]}` puts "moved to #{options[:branch]}" if options[:verbose] `git checkout -b #{ARGV[0]}/#{ARGV[1]}`