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
I am having a problem with SourceTree, where I start off with only a master branch, and then I enable git flow with defaults, which only creates a develop branch.
The issue here is that when I click on Git Flow button, it gives me the option to finish develop feature, which merges develop with itself, instead of providing a menu to create features and others. The Git flow is treating the develop and master as features instead of branches.
Am I doing something wrong in the Git Flow setup?
I have the same issue in Windows (Sourcetree version 3.3.4), also when i follow the flow with "Other action" > "Start new feature" and create a feature, it is now showing as a branch and not like in previous versions (inside a "folder" with the name "feature").
The workaround for this is manage my branches with responsibility with the concept of git-flow in mind, i mean, all in a manual way.
I recall opening the config file in the .git folder at the root directory of my repository and noticing that the section [gitflow "prefix"] was not initialised. I had to manually repair these as:
[gitflow "branch"]
master = master
develop = develop
[gitflow "prefix"]
feature = feature/
release = release/
hotfix = hotfix/
support = support/
versiontag =
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.