I have a project on a "Develop" branch.
When using "Git-flow" in the past, I got a new branch called "feature" and under feature the name of the branch I've created.
Lately when on "develop" (develop is checked out), and I choose "git-flow" the options show:
Finish feature
Other options
I choose other options and create a new branch. The newly created branch is not under "feature" but in the same hierarchy as the "develop" branch.
My other team mate when she check out develop and click Git-flow she has options:
Create new feature
etc..
and when she creates a new branch it is under "feature"
All my repositories immediately suggest I "finish feature" when "git-flow" on develop...
WHY??
How can I fix that?
Hello!
It sounds like your git-flow config might be invalid. Could you post the contents of your 'config' file under "YOUR_REPO/.git"? It should look something like this:
[gitflow "branch"]
master = master
develop = develop
[gitflow "prefix"]
feature = feature/
release = release/
hotfix = hotfix/
support = support/
versiontag =
Hello,
It looks like that:
Should I assign the string manually?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.