Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to list all files which have local changes in IntelliJ IDEA (outside of "Changes" view)

IntelliJ IDEA offers two very handy actions as part of the "View" menu: "Recent Files" and "Recently Changed Files". Is there a way to only list the files which have local changes? (In a non-intrusive style like the actions above do, not as part of the "Changes" view)

like image 836
Rahel Lüthy Avatar asked Aug 30 '11 13:08

Rahel Lüthy


People also ask

How do I get a list of modified files in IntelliJ?

View changes history for a file or selection IntelliJ IDEA allows you to review changes made to files or even fragments of source code. The Show History and the Show History for Selection commands are available from the main VCS menu and from the context menu of files.

How do I see local changes in IntelliJ?

Right-click anywhere in the editor and choose Local History | Show History from the context menu. In the dialog that opens, the left-hand pane shows a list of all saved revisions of the current file with timestamps.

How do I view change list in IntelliJ?

Use ⌘0 (macOS) or Alt+0 (Windows/Linux), to show the Commit tool window. Changes in the Commit Tool Window are in the default active changelist. The active changelist is highlighted in bold.


1 Answers

2020.1 and later versions have an option to use the new non-modal Commit tool-window:

non-modal

If you enable this option, the local changes will be in the Commit tool window.

Previous IDE versions have the following ways to view modified files:

  • Local changes tab (View | Tool Windows | Version Control - Local Changes), default shortcut is Alt+9.

  • Changed files Scope in the Project view

Previously the only way to view the changed files was via the Commit dialog:

Version Control | Commit Changes will show a dialog with locally changed files.

like image 56
CrazyCoder Avatar answered Sep 22 '22 18:09

CrazyCoder