How can I add , as a word separator for git diff –word-diff?
For instance I would like the diff to recognize that
function(A,B,C) -> function(A, B, C)
only has added the spaces instead of replacing the whole line.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
--word-diff-regex:I never used it but i guess that
git diff --word-diff-regex="[^[:space:],]+"may work.