We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a1c676 commit fcd08a5Copy full SHA for fcd08a5
1 file changed
bert_e/workflow/gitwaterflow/branches.py
@@ -862,7 +862,7 @@ def __init__(self):
862
def build(self, repo, dst_branch=None):
863
flat_branches = set()
864
for prefix in ['development', 'hotfix']:
865
- cmd = 'git branch -a --list *%s/*' % prefix
+ cmd = "git branch -a --list '*%s/*'" % prefix
866
for branch in repo.cmd(cmd).split('\n')[:-1]:
867
match_ = re.match(r'\*?\s*(remotes/origin/)?(?P<name>.*)',
868
branch)
0 commit comments