From 1191052a91d56aebd10afdfc7f717543d81042da Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Sat, 4 Jun 2016 19:22:36 +0200 Subject: [PATCH] Force native line endings for .po files As discussed on the list some time ago. cmake produces .po files already in native line endings. Only autotools on mingw might produce wrong line endings now, but I am pretty sure that nobody updates .po files using autotools on mingw. --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..3f62c34a12 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# Set the default behavior, in case people don't have core.autocrlf set. +* text=auto + +# Our .po file update scripts produce native line endings +*.po text + -- 2.39.5