Intellij: The Local Changes tab does not show up in the intellij Git

Viewed 3996

I am using the below version of Intellij:

enter image description here

As far as I know, when I change some files and navigate to the GIT tab, then I must be able to see Local Changes tab, which shows the list of the files which I changed. And I can use the green tick to push it. The below image shows what do I mean by Local Changes.

enter image description here

Sadly, this feature does not show up in my git tab. instead I got the below view: Any idea how to get the Local Changes tab?

ntellij:

Point:

I found this link but it is not clear for me what should I delete?

3 Answers

Version Control window has been redesigned, you can find "Local Changes" under "Commit" tab on left side of the window next to the Project tab.

You can see what's new here: https://www.jetbrains.com/idea/whatsnew/#version-control

If you want to restore old view then you need to disable "use non-modal commit interface" under Preferences | Version Control | Commit

If it doesn't appear use the combination Alt+0 simply. please find the accepted answer for correctly enabling. If it's still not appearing, update the IDE to the latest version

Just in case if someone was looking for how to open up 'Local changes' tab from the bottom left:

View > Appearance > Tool Window Bars

that opens Git / TODO / Problems / Terminal tabs at the bottom left of the IDE and 'Git' tab has 'Local Changes' and 'Log' tabs in it or just a 'Log' tab depending on 'Use non-modal commit interface' setting (unticked/ticked, respectively).

Related