Make PhpStorm show changed/modified files in project view

Viewed 32823

After moving from Zend Studio (ZS) to PhpStorm, I am starting to miss the way that ZS used to show changed files and display more than one project at once.

For example, notice how it shows that IndexController.php has been modified.

Is there any way to do this with PhpStorm?

Zend Studio PHP Explorer

11 Answers

For PhpStorm version 2022.1.2, on MacOS Big Sur, you will need to go to: Preferences -> Version Control -> Confirmation, then under Changes you will need to check the "Highlight directories that contain modified files in the Project tree" box.

In a Git toolbar (ctrl+9) tab named Local changes

enter image description here

As in PhpStorm 2021 you can achieve it by going to Settings > Version Control > Git and check Enable Staging Area enter image description here

If someone is still looking for solution:

Go to View & look for Changes option, it should bring up the tree view of changes for current project. You can also do show diff with current working tree in VSC pane.

Related