From: Jeff King <peff@peff.net>
To: "Marc-André Lureau" <marcandre.lureau@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: git add to ignore whitespaces, some day?
Date: Wed, 4 Mar 2015 05:05:50 -0500 [thread overview]
Message-ID: <20150304100549.GA15788@peff.net> (raw)
In-Reply-To: <CAJ+F1CL_X7d3RayLmohU3tMi6w5juVFEwCEBUA_Nf-Z53bq+ew@mail.gmail.com>
On Fri, Feb 27, 2015 at 01:09:30AM +0100, Marc-André Lureau wrote:
> It would be nice if git-add could be told to ignore whitespace
> changes, wouldn't it?
>
> According to SO, I am not the one to think so:
> http://stackoverflow.com/questions/3515597/git-add-only-non-whitespace-changes
>
> A change to add--interactive would be as simple as adding the diff -b
> or -w option like:
> my @diff = run_cmd_pipe("git", @diff_cmd, "-w", "--", $path);
What would it mean to stage such a hunk? For example, consider this
situation:
git init
echo 'foo();' >file
git add file
{
echo 'if (something) {'
echo ' foo();'
echo '}'
} >file
A regular diff shows:
diff --git a/file b/file
index a280f9a..ce0eeda 100644
--- a/file
+++ b/file
@@ -1 +1,3 @@
-foo();
+if (something) {
+ foo();
+}
but "diff -w" would show:
diff --git a/file b/file
index a280f9a..ce0eeda 100644
--- a/file
+++ b/file
@@ -1 +1,3 @@
+if (something) {
foo();
+}
If we try to apply that hunk to what is in the index, it will not work.
The context line does not exist in the index file. Even if you could
convince git-apply to massage it into place, it still does not update
the whitespace in the 'foo();' line. IOW, we did not stage the full hunk
at all; running "git add -p" again would show that we still have the
whitespace change to stage.
So if you were to pursue this, it would have to have two copies of each
hunk: the one to apply, and the "display" copy that we show the user. We
do this already for colorization. However, I think we rely there on the
fact that the two versions of the diff match up, line for line. Whereas
here, you would not even necessarily have the same number of hunks
between the regular and "-b" versions.
-Peff
prev parent reply other threads:[~2015-03-04 10:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-27 0:09 git add to ignore whitespaces, some day? Marc-André Lureau
2015-03-04 10:05 ` Jeff King [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150304100549.GA15788@peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=marcandre.lureau@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).