The following command shows me all my changes between the two dates, however, because the software is written in VB6, there are many code changes I wish to ignore.
git log --after="2016-03-01" --before="2016-04-01" --author="Pingu" -p --all --unified=0 -w
Unfortunately, the VB6 IDE randomly changes both the case of variables, and the size of fonts.
How can I prevent random numeric code changes in Visual Basic?
Stop Visual Basic 6 from changing my casing
Is there anyway I can build some intelligence into the git log command so that differences in case are ignored, and differences in numbers (of a single digit) are ignored?
This answer is not applicable as...
- It doesn't also allow the author and date filter to take place
- It doesn't address the changing font number.