gitflow4idea: Error: Gitflow is not installed
When trying to start a new hotfix, feature or release the following error is returned in the event log:
13:18:29 Error: Gitflow is not installed
13:18:29 Error
Gitflow is installed and works as expected from both my external terminal and PHP Storms built in terminal.
About this issue
- Original URL
- State: closed
- Created 11 years ago
- Comments: 49 (10 by maintainers)
brew install git-flow
not work for me, butbrew install git-flow-avh
works. stackoverflow for this issuebrew install git-flow
Also works.For Mac from the terminal in a project run “git flow init” and then restart pycharm and everything will work.
I solved this problem by changing the “Path to Git executable” to /usr/local/bin/git instead of /usr/bin/git in PHP Storm GIT preferences.
I had the same issue on Mac OS X 10.9.5.
Changing Git’s path in IDE Preferences didn’t help because there’s no git executable in
/usr/local/bin
. I tried approach by @adonix and it was helpful, but I still had errors in IDE’s Control Version console:Therefore, the solution:
Hope it helps someone.
OpherV, I’m seeing this on MacOS 10.9 with git 1.8.3.4 and git flow 0.4.1. I could provide remote debugging support. And by this, I mean that when I try to run a git flow command in phpStorm I get the following message:
Just posting this solution in case anyone comes across with the same problem as I did in Max OSX 10.9.2. My solutions was this:
I executed this command:
I left my PhpStorm’s path to git executable as it was (e.g. /usr/bin/git), and made a symbolic link to git-flow to point to /usr/bin/ since my git executable lives in /usr/bin/:
Adding symbolic links for git executable to /usr/local/bin/ didn’t work. I also try to adding symbolic links to /opt/local/bin/ and that didn’t work also. Hopefully this will help someone.
I’m getting the same error. But I was able to resolve this problem.
Mac OSX: 10.7.5 PHPStorm: 7.0 Git: 1.7.7.5 (/usr/bin/git) Git-flow: 0.4.1_0 (/opt/local/bin/git-flow)
Error seems to occur and not in the same directory hierarchy path of git-flow path and probably git. It worked fine if you change the path of git.
Best regards