* Trailing whitespace on git diff output.
@ 2014-09-01 17:47 Adria Farres
2014-09-01 18:10 ` Matthieu Moy
0 siblings, 1 reply; 2+ messages in thread
From: Adria Farres @ 2014-09-01 17:47 UTC (permalink / raw)
To: git
Hello,
Today, while redirecting git diff's output to a text file, I noticed git diff
leaves a trailing whitespace between different deltas of the same file (the line
that separates two different deltas). For example, committing a file with the
following content:
---
test
test
---
then changing it to the following:
---
test
test
test
test
---
committing and diffing it, leaves a trailing whitespace on line 8 of the
diff output.
Is that expected behavior? I'm using git 2.1.0.
Sorry for taking your time,
Adria
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Trailing whitespace on git diff output.
2014-09-01 17:47 Trailing whitespace on git diff output Adria Farres
@ 2014-09-01 18:10 ` Matthieu Moy
0 siblings, 0 replies; 2+ messages in thread
From: Matthieu Moy @ 2014-09-01 18:10 UTC (permalink / raw)
To: Adria Farres; +Cc: git
Adria Farres <14farresa@gmail.com> writes:
> Hello,
>
> Today, while redirecting git diff's output to a text file, I noticed git diff
> leaves a trailing whitespace between different deltas of the same file (the line
> that separates two different deltas). For example, committing a file with the
> following content:
> ---
> test
>
> test
> ---
>
> then changing it to the following:
> ---
> test
> test
>
> test
> test
> ---
>
> committing and diffing it, leaves a trailing whitespace on line 8 of the
> diff output.
That is (I replaced spaces with _):
--- a/test.txt
+++ b/test.txt
@@ -1,3 +1,5 @@
_test
+test
_
_test
+test
GNU diff does the same, and that is what I would expect: the first
column is left for + and -, and spaces are used as a prefix for the
context.
If you diff
test
x
test
and
test
test
x
test
test
you'd expect a space before the 'x' in the diff output. In your example,
there's a space before the empty string, which has the same role as the
'x' above.
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-09-01 18:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-01 17:47 Trailing whitespace on git diff output Adria Farres
2014-09-01 18:10 ` Matthieu Moy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).