When I use git show --no-prefix -U1000, the result would be something like:
-var a = 0;
+const a = 0;
no change
I'm wondering if there's an option to ident the line with a whitespace right after +/-, e.g.:
- var a = 0;
+ const a = 0;
no change
I've checked the documentation here https://git-scm.com/docs/git-show, but there doesn't seem to be one.