From 878e307b1602d7dda577ea755dc473c144f1c887 Mon Sep 17 00:00:00 2001 From: Emma Haruka Iwao Date: Fri, 11 Aug 2023 21:39:09 +0000 Subject: [PATCH] Workaround for GitHub graphs not showing GitHub support said certain big files under data/ are causing slowdowns and suggested treating them as binary in .gitattributes. https://github.com/google/mozc/issues/789 PiperOrigin-RevId: 556095285 --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitattributes b/.gitattributes index 7cc94ae58..1a3c9985f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -38,3 +38,9 @@ *.bmp binary *.ico binary *.tiff binary + +# Workaround for GitHub graph timeouts +# Treat large dictionary data files as binary. +# https://github.com/google/mozc/issues/789 +src/data/dictionary_oss/connection_single_column.txt binary +src/data/test/dictionary/connection_single_column.txt binary