Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gitkraken: Failed initializing Git Flow

I am using Gitkraken to manage my git activities but while initializing Git Flow using inbuilt option provided by Gitkraken it fails.

Here is the screenshot that shows the enter image description hereerror message

like image 228
Varun Sukheja Avatar asked Nov 26 '18 08:11

Varun Sukheja


Video Answer


3 Answers

Example

I'm had the same problem, open git bash terminal and run command: "git flow init" after that open Git kracken and git flow should process normally.

like image 160
Killdery Coelho Avatar answered Oct 23 '22 20:10

Killdery Coelho


Support told me this:

For now, try deleting your local develop branch and then try initializing GitFlow to work around the issue.

like image 27
Ferdinand Ade Avatar answered Oct 23 '22 20:10

Ferdinand Ade


I was have the same issue, and I was solve it run the next command in the root path of project.

git-flow init -d

if command don't appear in your current bash you can follow the next web pages

git flow

git flow bash completation

like image 2
Edoardo Lopez Avatar answered Oct 23 '22 18:10

Edoardo Lopez