Enable Version Control Integration. I chose git. ...">

Phpstorm "invalid git roots"

I checked the code from github. Then I went to Version Control> Enable Version Control Integration. I chose git. Then I get the "invalid git root" error. Why can I get this error?

I am using msysgit 1.7.1 and phpstorm 2.1.

+3
source share
1 answer

Are submodules used? This is usually the cause of this error. At the command line you can check if there is a problem:

git submodule update --init --recursive

Hope this helps.

+1
source

All Articles