in reply to Re: semantic diff for Perl code
in thread Semantic diff for Perl code
This assumes that the module's code is stored on github,
git diff will work on any git repository, regardless of where it is hosted; and, more generally, diff will work even if version control is not involved, if you can put the two source trees you want to compare side by side on the filesystem.
I'm not sure this is really what was asked for, though. If a function block has been moved and possibly changed, diff mostly shows you that it was moved, and you need to actually look at the moved code line by line to see if it also changed.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: semantic diff for Perl code
by talexb (Chancellor) on Sep 15, 2017 at 14:46 UTC | |
Re^2: semantic diff for Perl code
by LanX (Sage) on Sep 14, 2017 at 22:43 UTC |
In Section
Seekers of Perl Wisdom