Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PhpStorm can not push to git repository

Tags:

git

push

phpstorm

I am using Windows 8, PhpStorm 8.0.2, git

I am trying to push my projects to the remove git repository (they are hosted on the github and bitbucket).

Last message that I see in the Version Control Console of the php storm is:

git -c core.quotepath=false push --progress --porcelain origin refs/heads/master:master

And it waits on it forever, it does not show any error or output from this command

If I'm pushing project manualy (from command line, or from console tab in PhpStorm with command git push origin) it works well. Also I can commit changes into my local repository.

I've tried to disable windows firewall and added both git and phpstorm into the firewall rules - it does not help.

When I'm using command ssh -T [email protected] it also works well and gives me message about successfully access to the github.

So, the only thing that does not working is pushing to remove git repository via PhpStorm menu.

What can I do to fix this problem?

Thanks

like image 895
Pavel Agalecky Avatar asked Sep 30 '22 00:09

Pavel Agalecky


1 Answers

go to phpstorm -> settings -> version control -> git and choose "built in" on the "ssh executable" section's dropdown.

like image 61
debugall Avatar answered Oct 02 '22 15:10

debugall