You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I can´t finish a feature hotfix beacuse it disappears.. see the image below.
When loading finishes, the name of the feature/hotfix disappears.
Thanks in advance
The issue was the branch's name: Sourcetree didn´t include the word "feature/ or hotfix/" when I initialized Git flow. I had to init on cmd with git flow init -f again.
thanks
I got same issue.
As far as I can check, root cause seems to be SourceTree "Git flow init" button fails setting gitflow prefixes.
My Git config was "empty":
[gitflow "prefix"]
feature =
bugfix =
release =
hotfix =
Replacing with usual default setting (here after) fixed this issue at my end
[gitflow "prefix"]
feature = feature/
bugfix = bugfix/
release = release/
hotfix = hotfix/
Hope this can help,
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.
Hi, if the feature was created before the config file fix follow these steps:
1) fix file config:
[gitflow "prefix"]
feature = feature/
bugfix = bugfix/
release = release/
hotfix = hotfix/
2) restart sourcetree
3) rename your feature: from "myfeature" to "feature/myfeature"
4) click on "Git Flow" button
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi.
I'm having the same user as the reporter, at the beginning the hotfix is listed but after some seconds it disappears.
I'm using a new brand computer and I cloned my git from bitbucket, in my other PC it works ok.
I'm using version 3.3.6
I already did this: git flow init -f
And this:
Replacing with usual default setting (here after) fixed this issue at my end
[gitflow "prefix"]
feature = feature/
bugfix = bugfix/
release = release/
hotfix = hotfix/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same problem
$ git flow feature list
Fatal: Prefix parameter missing.
No feature branches exist.
You can start a new feature branch:
git flow feature start <name> [<base>]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello! This might be an issue on our end but as a work-around just click the "Terminal" button and run the following command:
git flow hotfix finish 1527-acceso-denegado
Before doing that, could you run the command that will list the possible hotfix names for gitflow and reply with the results?
git flow hotfix list
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.