Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The "Local Changes" tab does not show up in the IntelliJ IDEA Git tool window

I am using version 2020.1.2 (Community Edition) of IntelliJ IDEA:

IntelliJ IDEA version screen

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 I mean by Local Changes.

IntelliJ IDEA "Local Changes" tab

Sadly, this feature does not show up in my Git tab. Instead I got the following view:

ntelliJ IDEA Git tab without "Local Changes"

How can I get the Local Changes tab?

One thing I did find is chat discussion 14.1 - Not showing Local Changes from April 2015, but it is not clear for me what should I delete.

like image 905
Jeff Avatar asked Sep 01 '25 22:09

Jeff


2 Answers

The Version Control window has been redesigned. You can find "Local Changes" under the "Commit" tab on the left side of the window next to the Project tab, as seen in the following screenshot:

commit tab in IntelliJ IDEA

You can see what's new in the most recent versions of IDEA at What's New in IntelliJ IDEA.

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

In the 2025.1 version, this setting was moved to Preferences > Advanced Settings > Version Control > "Use modal commit interface for Git and Mercurial" (it also requires the "Modal Commit Interface" plugin to be enabled).

like image 97
Ruslan Kuleshov Avatar answered Sep 03 '25 17:09

Ruslan Kuleshov


Uncheck following:

Settings -> Version Control -> Commit -> Use non-modal commit interface

You should now see Local Changes tab inside Git.

In the 2025.01 version, this setting was moved to Preferences > Advanced Settings > Version Control > "Use modal commit interface for Git and Mercurial" (it also requires the "Modal Commit Interface" plugin to be enabled).

like image 41
Dimitrije Glisic Avatar answered Sep 03 '25 16:09

Dimitrije Glisic