Reputation: 1199
My developer sent me the source code to the new version of an application that he updated for me. Is it possible for me to compare the source code from a previous version with this one to see what changes were made? I'm using Eclipse and OSX. Thanks in advance.
Upvotes: 1
Views: 149
Reputation: 10717
For comparing two files (or folders) on Eclipse, select both files (or folders), right click on any of them, and select Compare With
option from the context menu.
Upvotes: 0
Reputation: 2688
In the future, you should look into using a version control system, like SVN (SmartSVN, TortoiseSVN, etc. etc...) This usually has an integrated tool to see differences from one version to the next. For now, something like BeyondCompare, WinDiff, UNIX command line diff
, etc.
Upvotes: 4
Reputation: 119
You can use a "diff tool" to generate a nicely readable report of differences for you. See some examples here: http://www.git-tower.com/blog/diff-tools-mac/
Upvotes: 0