Command line
This requires the diff and vim packages.
diff --recursive /dir/ect/ory1 /dir/ect/ory2 > 1_vs_2.diff vimdiff 1_vs_2.diff
Potentially useful diff options:
--ignore-all-space --exclude=.svn
GUI
Install Intellij CE.
Then either Run IntelliJ Diff from the command-line.
Or from within a running Intellij window:
- Open a common parent directory as a project
- Select the two directories to compare
- Right-click – Compare Directories
Alternatives
I often see the GPL-licensed WinMerge tool recommended, But it works only on Windows, last release was 2013 and navigation into sub-directories and file diffs is a bit clunkier than in Intellij.




