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'm trying to use git-flow in my repository but when i initialize the git-flow with sourcetree the program make some weird because when i click on GitFlow button in the top, the sourcetree is taken the current branch as a feature don't matter if i have select master or develop anycurrent branch is taken as feature and ask my if i want to finish, i don't do any more that clone my repo and initialize then init git flow with default config all with sourcetree
i don't know why have this behavior
my config file:
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url = git@bitbucket.org:Goders/frontend.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[gitflow "branch"]
master = master
develop = develop
[gitflow "prefix"]
feature =
bugfix =
release =
hotfix =
support =
versiontag =
[gitflow "path"]
hooks = C:/Users/oamor/WebstormProjects/frontend/.git/hooks
Hello! Looks like the git-flow config isn't setup properly. Modify your config file under the "[gitflow "prefix"]" part to look like this:
[gitflow "prefix"]
feature = feature/
release = release/
hotfix = hotfix/
support = support/
versiontag =
本件、私も同じ状況になっています。
SourceTree は Version 3.2.6.3544
内蔵 Git は 2.21.0 です。
"[gitflow "prefix"]” を修正すれば良いのはわかりますが、なぜこのような状況になるのか、根本的に修正していただきたいです。
下記の画像をご覧ください。git-flow-init ファイルで正常動作する同僚からもらったものと比較したものです。
左側の -2017 になっている方が正常動作するもので、右側のものが初期化しても[gitflow "prefix"]の値が埋まらないものです。
これらを参考に、インストール直後から正常に使用できるものをご提供いただければ幸いです。
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.