If I have two C++ sources with a difference like:
1st version:
#include "header.h"
2nd version:
#include "header_new.h"
... (particularly after some severe renaming, touching many files). What is the best way (if any) to exclude this step from a comparison of the complete source tree in order to filter out files containing exclusively these trivial changes?
Michael
1st version:
#include "header.h"
2nd version:
#include "header_new.h"
... (particularly after some severe renaming, touching many files). What is the best way (if any) to exclude this step from a comparison of the complete source tree in order to filter out files containing exclusively these trivial changes?
Michael
Comment