even i was curious to know about this. my be this will be helpful for you https://www.jetbrains.com/phpstorm/help/file-status-highlights.html#1
Oct 25, 2015
5
Level 1
All files colored red in Phpstorm
Hi everyone,
It's been bugging me for a while. So, I install Laravel and for some weird reasons, all the files in my Phpstorm show all red. I assume there might be some file error or something. But, I couldn't find one.
Does anyone experience the same thing as well?
Level 50
@zeecaniago hey there.
Rest assure there is no file error. The files are red because you are using git. I bet that if you run git status you will see that all of the files are new and you need to add them.
Basically, with PHPStorm the files colors determine:
- red - new file in git
- yellow/orange - file has been changed
- green - file has been added (
git add) - regular - the file is up to date with the current git commit
That's all ;)
4 likes
Please or to participate in this conversation.