Using IntelliJ's diff viewer is a very nice way to review code because you can make changes in your local version with all the capabilities of the IntelliJ code editor (refactoring, completion, etc).
4 In addition to the .Intellij* files, and invalidating the cache, if you really want to clear everything out, then also delete the .idea folder and *.iml per-project files that IntelliJ also generates...
Can't find Git local changes in Intellij Idea 2020.1 The "Local Changes" tab does not show up in the IntelliJ IDEA Git tool window which are about restoring old behavior for the "Commit" window and local changes. IntelliJ 2020+ added a "Commit" tab on the upper left of the IDE. I don't know what I did to make it disappear, but how can I get it ...
Looking through the answers to date, the basic gist I see is that IntelliJ defines what Eclipse calls "projects" as modules, and "workspaces" as projects. The idea is to ensure that modules in the same project are fairly related. So if project A depends on project B, but both are totally unrelated to project C, it would be good to open projects A and B as modules in the same IntelliJ project ...
355 Since Idea IntelliJ IDEA 13.1 there is a possibility to edit multiple lines. Windows Alt + Shift + Mouse click macOS Option + Shift + Mouse click for selection. More about this new improvement in the IntelliJ blog post here. Very useful feature.
I just imported a project from subversion to IntelliJ IDEA 11 - it's a maven project. But I have a problem in maven library dependencies so that I can't include all maven dependencies automatically -
Look Inside Compiled Code with Java Bytecode Decompiler -- This page introduced the plugin Java Bytecode Decompiler in 2020.03. By using this bundled plugin inside Intellij, it's pretty easy to decompile .jar to java code.
Does IntelliJ have an Organize Imports feature similar to that in Eclipse? What I have is a Java file with multiple classes missing their imports. Example: package com.test; public class Foo {