Hello,
I am facing a strange issue where I couldn't able to finish a feature.
Step 1: When I click on finish feature.
Step 2: I am not able to select any feature name. Try all combination regarding checkbox but none works. Also, OK button is disabled.
More Information :
Initially, I am not able to create the feature as well. Also, if I am on develop branch & click on gitflow than it's directly displayed finish feature option.
Have created a new feature using Other action.
Version: 3.1.3
Windows OS version: 10
Thank you for help in advance.
I have found starting inv3.1.2 when you initialize git flow the .git/config file does not update correctly
values for [gitflow "prefix"] section show as follow
[gitflow "prefix"]
feature =
bugfix =
release =
hotfix =
support =
versiontag =
[gitflow "path"]
If you correct as show below
[gitflow "prefix"]
feature =feature/
bugfix =
release =release/
hotfix =hotfix/
support =
versiontag =
[gitflow "path"]
process will function correctly
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello! Could you report back with the following:
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Mike Corsaro,
Thank you for your replay.
Received below message from the terminal.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like git-flow didn't initialize correctly -- the answer below should help you out (the config file is under YourRepo/.git/config).
Find:
feature =
and make it:
feature = feature/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.