dahlbyk / posh-git

A PowerShell environment for Git
http://dahlbyk.github.io/posh-git/
MIT License
7.62k stars 802 forks source link

autocomplete of branchnames with git flow #969

Open digitalsigi opened 3 months ago

digitalsigi commented 3 months ago

System Details

Issue Description

First of all thxs for this great and very helpful pice of software, I really like it. There is one question I have:

I am using git flow for managing releases, hotfix, features etc. In this context I use the related naming conventions for branches e.g. for release 1.23.0 it would be release/1.23.0

When I enter

git flow release finish 1.<tab>

the result is

git flow release finish release/1.23.0

and git flow claims branch release/release/1.23.0 not found.

I there a way to customize posh-git so that only the part after first dash is added as autocomplete?