From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
To: git@vger.kernel.org, gitster@pobox.com
Subject: [PATCH] Make attributes "-diff" and "diff" work as advertized
Date: Sat, 7 Jul 2007 17:53:17 +0100 (BST) [thread overview]
Message-ID: <Pine.LNX.4.64.0707071749220.4093@racer.site> (raw)
In Documentation/gitattributes.txt, it says that you can suppress
diffs by setting the attribute "-diff", and you can override the
binary detection with the attribute "diff".
Make it work.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
Evidently, this is on top of "next" + the funcname patches, since
I realized it only when working on top of them.
However, it should also apply cleanly to "master", and even
"maint". (The only reason I'm not doing it right now, is that I am
in the middle of preparing a patch pair, and doing this patch was
easy enough with rebase -i.)
diff.c | 15 +++++++--------
t/t4020-diff-external.sh | 12 ++++++++++++
2 files changed, 19 insertions(+), 8 deletions(-)
diff --git a/diff.c b/diff.c
index 21e61af..e92db5c 100644
--- a/diff.c
+++ b/diff.c
@@ -1170,13 +1170,19 @@ static void diff_filespec_check_attr(struct diff_filespec *one)
one->is_binary = 0;
one->funcname_pattern_ident = NULL;
+ if (!one->data && DIFF_FILE_VALID(one))
+ diff_populate_filespec(one, 0);
+
+ if (one->data)
+ one->is_binary = buffer_is_binary(one->data, one->size);
+
if (!git_checkattr(one->path, 1, &attr_diff_check)) {
const char *value;
/* binaryness */
value = attr_diff_check.value;
if (ATTR_TRUE(value))
- ;
+ one->is_binary = 0;
else if (ATTR_FALSE(value))
one->is_binary = 1;
@@ -1186,13 +1192,6 @@ static void diff_filespec_check_attr(struct diff_filespec *one)
else
one->funcname_pattern_ident = value;
}
-
- if (!one->data && DIFF_FILE_VALID(one))
- diff_populate_filespec(one, 0);
-
- if (one->data)
- one->is_binary = buffer_is_binary(one->data, one->size);
-
}
int diff_filespec_is_binary(struct diff_filespec *one)
diff --git a/t/t4020-diff-external.sh b/t/t4020-diff-external.sh
index f0045cd..ed3bd5b 100755
--- a/t/t4020-diff-external.sh
+++ b/t/t4020-diff-external.sh
@@ -94,4 +94,16 @@ test_expect_success 'diff attribute should apply only to diff' '
'
+test_expect_success 'no diff with -diff' '
+ echo >.gitattributes "file -diff" &&
+ git diff | grep Binary
+'
+
+echo NULZbetweenZwords | tr Z '\0' > file
+
+test_expect_success 'force diff with "diff"' '
+ echo >.gitattributes "file diff" &&
+ git diff | grep -a second
+'
+
test_done
--
1.5.3.rc0.2712.g125b7f
next reply other threads:[~2007-07-07 17:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-07 16:53 Johannes Schindelin [this message]
2007-07-08 0:08 ` [PATCH] Make attributes "-diff" and "diff" work as advertized Junio C Hamano
2007-07-08 0:59 ` Johannes Schindelin
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=Pine.LNX.4.64.0707071749220.4093@racer.site \
--to=johannes.schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.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).