DarkPlayer@lemmy.world to Programming@programming.dev · 2 years agoHow far should a programming language aware diff go?semanticdiff.comexternal-linkmessage-square23linkfedilinkarrow-up176arrow-down14
arrow-up172arrow-down1external-linkHow far should a programming language aware diff go?semanticdiff.comDarkPlayer@lemmy.world to Programming@programming.dev · 2 years agomessage-square23linkfedilink
minus-squareFizzyOrange@programming.devlinkfedilinkarrow-up2arrow-down1·2 years agogit diff -w only ignores whitespace within a line (e.g. changing indentation). It doesn’t ignore adding or removing new lines. But even if it did, wrapping a function call or a long string can introduce extra commas or quotes.
How is that not whitespace?
git diff -wonly ignores whitespace within a line (e.g. changing indentation). It doesn’t ignore adding or removing new lines.But even if it did, wrapping a function call or a long string can introduce extra commas or quotes.