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.
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.