From 603135791aff9c89f494fa216aa92f658515fbe2 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Fri, 2 Jul 2021 14:46:57 -0700 Subject: [PATCH] gitattributes: Show diffs for golden generated code 'binary' in gitattributes is a macro for '-text -diff' where -text disables EOL modification and -diff disables textual diffs. However, these are text files, so we'd actually rather like to have diff. --- .gitattributes | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 6d0661ec5a..4343b9bd8e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,4 @@ -TestService.java.txt binary -TestServiceLite.java.txt binary -TestDeprecatedService.java.txt binary -TestDeprecatedServiceLite.java.txt binary +TestService.java.txt -text +TestServiceLite.java.txt -text +TestDeprecatedService.java.txt -text +TestDeprecatedServiceLite.java.txt -text