From 64adab09635f62e9888cfdd54b1992fe724560b9 Mon Sep 17 00:00:00 2001 From: Anas Sulaiman Date: Wed, 14 Aug 2024 21:00:13 +0000 Subject: [PATCH] avoid crlf issues with copybara Depending on what crlf configs are set in the env, copybara may fail to run git commands. This should ensure that git chooses what matches its env. Bug: NA Test: NA Change-Id: I0da43c98330d6dfe61e26268be92ea3794e38523 GitOrigin-RevId: 4e5f7c1a8826fcfd181d926a1060c0050058b651 --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3a07b5d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*win.cfg text=auto +*win.sh text=auto +*.bat text=auto