I have created two java projects both have some common package structure and also same class. I want to compare these two projects and get each difference. Is there any software to get difference between two projects.
Thanks Deepak
|
I have created two java projects both have some common package structure and also same class. I want to compare these two projects and get each difference. Is there any software to get difference between two projects. Thanks Deepak
| |||
|
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
For windows, the best choice is BeyondCompare. If you want it free - take WinMerge. Under Unix, the best choice is Meld which is written in python, thus being also the only cross-platform alternative of the three. | |||||
feedback
|
|
There's BeyondCompare. It's not free, but it is very good | |||
|
feedback
|
|
Have you ever used WinMerge? you can use it to compare two folders and it will show you the differences between them. | |||
|
feedback
|
|
The interface is definitely dated, but I love xxdiff for showing complex diffs and merge conflicts. Superb tool. If you'd like to know what the differences are going forward, you might want to place both versions under a version control system like git, which can make finding differences (and moving changed code) very easy. But I'd have to want to do the same task again tomorrow to go this extra step. :) | |||
|
feedback
|
|
Another option is to use a source code control system like subversion or git or bazaar or mercurial. | |||
|
feedback
|