IntelliJ IDEA offers numerous ways of comparing files, folders and code snippets and even synchronizing folder contents.
Let's say there are two similar files in your project, and you need to compare them line by line. With IDEA, that's very easy. Just select both files in your project window (holding Ctrl for multi-selection).
Now you have two options:
Compare FilesNow the new window opens, which contains two panels, each with one file. This is very similar to diff in Version Control Systems such as Git.
Each difference is color-coded:
You can click the arrow icons » and « to apply a particular change from one file to another.
This comparison works for images, too, although you cannot see and apply individual differences.
Another case is when you need to compare a file from your project with another file outside of it.
The process is again very similar. Select a single file in your project window and:
Compare With...The last step is to browse for an external file to compare with. Now the comparison is the same as in the example above.
Maybe you have a file in your project, and you need to compare it with some external content, which is not saved as a file on your machine. Maybe it is a code snippet from the web, for example, from stack overflow.
First, you need to open the file from your project in your editor. Then copy to clipboard the snipped you want to compare (Ctrl+C).
Now you have two options. Either compare the whole file against the clipboard or just a selection. If you want the whole file to be compared, just right-click anywhere in the editor and select Compare with Clipboard from the context menu. If you want just a selection instead, select some fragment of the file first and then right-click as before.
What about the case when you want to compare two non-file code snippets from external sources? You can do this too! Just run Find Action via Ctrl + Shift + A and then search for Open Blank Diff Window.
This opens a brand new diff window with both panels blank, so you can copy and paste both snippets to be compared.
Even if you're not using any Version Control system, IDEA stores historical versions of your local files. You can right-click in your editor and select Local history → Show history.
Here you can browse older versions of your current file and see the difference between the old and the current version and apply any changes if required.
If you're using a Version Control System, you have several more comparison options. For example, if you're using Git, you can go to VCS → Git or right click your editor and select Git. Now you can:
The comparison works not only for individual files but also for the whole directories. The process is the same as for files - just select two folders in your Project window and press Ctrl + D or right click and Compare Directories.
Here you can see a list of all the files present in both or in either one of the directories. You can easily spot which files are present in just one folder and which in both. These in both, you can compare as usual.
The directory diff tool is useful not only for spotting differences in both directories, but also for synchronizing changes. You can apply changes for individual sections of each file as usual. But you can also mark files present only in one of the directories to be either kept or synchronized to the other directory. You can change the desired action for each file in the * column. Once you are satisfied, you can hit either Synchronize selected or Synchronize all.
Similar posts: